interface DividerProps { text: string; } const Divider = (props: DividerProps) => { return (
{props.text}
); }; export default Divider;