habitica-sync/view/TodoItem.tsx

12 lines
256 B
TypeScript
Raw Normal View History

2021-10-10 21:08:13 -07:00
import * as React from "react";
function TodoItem(props: any) {
2021-10-10 21:08:13 -07:00
return (
<div className="todo-item" key = {props.key}>
2021-10-10 21:08:13 -07:00
<input type="checkbox" />
<p>{props.task.text}</p>
</div>
)
}
export default TodoItem