Attempt to implement settings syncing

This commit is contained in:
ransurf 2021-10-10 21:08:13 -07:00
parent b53b8758ba
commit 9824d2ba31
10 changed files with 118 additions and 10 deletions

12
view/TodoItem.tsx Normal file
View file

@ -0,0 +1,12 @@
import * as React from "react";
function TodoItem(props: any) {
return (
<div className="todo-item">
<input type="checkbox" />
<p>{props.task.text}</p>
</div>
)
}
export default TodoItem