import React from "react";
import ObjectName from "../object/ObjectName";
import ObjectPreview from "./ObjectPreview";
const ObjectRootLabel = ({ onMatchFound, searchBoxText, filterStrings, name, data }) => {
if (typeof name === "string") {
return (
:
);
}
return (
);
};
export default ObjectRootLabel;