const ComponentTodo: FC<{ text: string }> = ({ text }) => { return (
{text}
) } export default ComponentTodo