diff --git a/README.md b/README.md index 9124009..18391e2 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Application created with [React](https://reactjs.org/) and [Vite](https://vitejs.dev/). -The app uses [functional components](https://reactjs.org/docs/components-and-props.html#function-and-class-components) and the [useState](https://reactjs.org/docs/hooks-state.html), [useEffect](https://reactjs.org/docs/hooks-effect.html) and [useRef hooks](https://beta.reactjs.org/reference/react/useRef). It interacts with a [json-server](https://github.com/typicode/json-server) simulated [REST API](https://www.redhat.com/en/topics/api/what-is-a-rest-api) and supports all [CRUD operations](https://developer.mozilla.org/en-US/docs/Glossary/CRUD). It `fetch()` (GET) the list stored in the database on loading, then allows the user to create (POST), update (PATCH) or remove (DELETE) its elements and search among them. +The app uses [functional components](https://reactjs.org/docs/components-and-props.html#function-and-class-components) and the [useState](https://reactjs.org/docs/hooks-state.html), [useEffect](https://reactjs.org/docs/hooks-effect.html) and [useRef hooks](https://beta.reactjs.org/reference/react/useRef). It interacts with a [json-server](https://github.com/typicode/json-server) simulated [REST API](https://www.redhat.com/en/topics/api/what-is-a-rest-api) and supports all [CRUD operations](https://developer.mozilla.org/en-US/docs/Glossary/CRUD). It `fetch()` ([GET](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/GET)) the list stored in the database on loading, then allows the user to create ([POST](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST)), update ([PATCH](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH)) or remove ([DELETE](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/DELETE)) its elements and search among them.