import { TextProps } from "./types"; import { Text as TextComponent } from "@shared/components/text"; export const Text: React.FC<{ fields: TextProps }> = ({ fields }) => { return (
Text Block
); }; export default Text;