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