interface DividerProps { content: string } export const Divider: React.FC = (props) => { const { content } = props return ( <>
{content}
) }