From 4623c607ce2345745bf348fd8e558c93b80e5ee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CF=80=CE=AC=CE=B8=CE=B5=CE=B9=20=CE=BA=CF=8C=CF=83=CE=BC?= =?UTF-8?q?=CE=BF=CF=82?= <63155388+pathei-kosmos@users.noreply.github.com> Date: Tue, 10 Jan 2023 01:44:45 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.