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