interface Props { content: string; } const Text: React.FC = ({ content }: Props) => { return {content}; }; export default Text;