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