Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 540 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 540 Bytes

React basics

A simple React based Todo list app, written in Javascript.

Components:

TodoApp - The React app base, implementing the TodoList component.

TodoList - List of Todo components.

Todo - List item, showing the item text.


App is using:

  • React hooks:

    • useContext
    • useState
    • useEffect
    • Inline scripting (Array's map/forEach)
    • Custom useTodos hook
  • React context

    • Custom TodoContext context provider

Don't forget to run yarn install!