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

{props.todo_text}

) } export default TodoItem