jackreichert / over-engineered-todo

building a todo app to keep my skills sharp
0 stars 1 forks source link

Add Context/state Flux flow to App #6

Closed jackreichert closed 11 months ago

jackreichert commented 11 months ago

As a user I want my data to persist So that I can use this app effectively

Description

State management and flow is essential for any app to manage its data. Flux is the general standard that has been accepted for front end applications. There are different implementations of it.

Because the data flow is relatively simple, a native implementation without an outside library like redux is sufficient. This can be done using context and state.

Acceptance Criteria

The state should be a list of Tasks each task has a title:string and completed:bool.