Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dialeleven committed Jun 30, 2024
1 parent e979515 commit 0240f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The Medium.com tutorial covers reading the TODO list, TODO items, creating a new
This is a great project to get aquainted with how React works from working with components, JSX syntax, managing state (useState), various hooks (useEffect, useContext), and using the Context Provider to pass state down to child components (e.g. <TodoList /> (TodoList.js) `tasks` object passed down to the child <TodoAddItemModal /> (TodoAddItemModal.js) to access the `tasks` list object and filter out the selected task id when 'edit' is clicked).

## Live Demo
The app build is hosted on Netlify at <a href="[http://example.com/](https://react-todo-app8.netlify.app)" target="_blank">[example](https://react-todo-app8.netlify.app)</a> to interact with.
The app build is hosted on Netlify at <a href="https://react-todo-app8.netlify.app" target="_blank">https://react-todo-app8.netlify.app</a> to interact with.

Netlify has a nice Continuous Deployment (CD) feature, so when your GitHub repository changes are pushed, Netlify automatically builds and deploys your site to their CDN (Content Delivery Network). Netlify's CD includes automatic builds, previews for pull requests, instant cache invalidation, and continuous delivery to production. So, Netlify can be a part of a CI/CD pipeline which is a great way to get started with CI/CD if you haven't used it before!

Expand Down

0 comments on commit 0240f83

Please sign in to comment.