import * as React from "react"; function TodoItem(props: any) { return (

{props.task.text}

) } export default TodoItem