diff --git a/react-exercises/grocery-list-react/README.md b/react-exercises/grocery-list-react/README.md
new file mode 100644
index 00000000..14d2b101
--- /dev/null
+++ b/react-exercises/grocery-list-react/README.md
@@ -0,0 +1,21 @@
+# Instructions
+
+In this exercises, you'll will make a reactive grocery list.
+
+## How to do the question
+- Run `npm install` in the `grocery-list-react` folder.
+- Run `npm run start` to start the development server.
+
+## Requirements
+- Users should see a grocery list items a couple of button to control the behavior of the list.
+- User should be able to add more grocery items through an input box and click a `Add` button to add it to the list displaying the item.
+- There should be a button to clear all the grocery list items at once.
+- If there is an item already, and the same item is added again, show `2` now beside that grocery item. This number is going to increase everytime the same item is added to the grocery list.
+- Clicking on a grocery item should change its color to red. Clicking again should change
+ it back to black. Red means the item has been purchased.
+- You can add any other control as you prefer.
+- **The UI is totally up to you. Make it as beautiful as you can by using any CSS that you can write. No libraries allowed of any kind.**
+- Make sure to make your as readable, maintainable as possible.
+
+## Restrictions
+- You are not allowed to use any extra library at all for `CSS` or any other thing.
\ No newline at end of file
diff --git a/react-exercises/grocery-list-react/package.json b/react-exercises/grocery-list-react/package.json
new file mode 100644
index 00000000..a20cff46
--- /dev/null
+++ b/react-exercises/grocery-list-react/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "grocery-list",
+ "version": "0.1.0",
+ "private": true,
+ "dependencies": {
+ "@testing-library/jest-dom": "^4.2.4",
+ "@testing-library/react": "^9.3.2",
+ "@testing-library/user-event": "^7.1.2",
+ "react": "^16.13.1",
+ "react-dom": "^16.13.1",
+ "react-scripts": "3.4.1"
+ },
+ "scripts": {
+ "start": "react-scripts start",
+ "build": "react-scripts build",
+ "test": "react-scripts test",
+ "eject": "react-scripts eject"
+ },
+ "eslintConfig": {
+ "extends": "react-app"
+ },
+ "browserslist": {
+ "production": [
+ ">0.2%",
+ "not dead",
+ "not op_mini all"
+ ],
+ "development": [
+ "last 1 chrome version",
+ "last 1 firefox version",
+ "last 1 safari version"
+ ]
+ }
+}
diff --git a/react-exercises/grocery-list-react/public/favicon.ico b/react-exercises/grocery-list-react/public/favicon.ico
new file mode 100644
index 00000000..d77e85d9
Binary files /dev/null and b/react-exercises/grocery-list-react/public/favicon.ico differ
diff --git a/react-exercises/grocery-list-react/public/index.html b/react-exercises/grocery-list-react/public/index.html
new file mode 100644
index 00000000..aa069f27
--- /dev/null
+++ b/react-exercises/grocery-list-react/public/index.html
@@ -0,0 +1,43 @@
+
+
+
+ );
+};
+
+export default GroceryItem;
diff --git a/react-exercises/grocery-list-react/src/components/GroceryList.jsx b/react-exercises/grocery-list-react/src/components/GroceryList.jsx
new file mode 100644
index 00000000..178149e3
--- /dev/null
+++ b/react-exercises/grocery-list-react/src/components/GroceryList.jsx
@@ -0,0 +1,14 @@
+import React from 'react';
+import GroceryItem from './GroceryItem';
+
+const GroceryList = ({ items, handleClick }) => {
+ return (
+
+ {items.map(item => (
+
+ ))}
+
+ );
+};
+
+export default GroceryList;
diff --git a/react-exercises/grocery-list-react/src/index.css b/react-exercises/grocery-list-react/src/index.css
new file mode 100644
index 00000000..ec2585e8
--- /dev/null
+++ b/react-exercises/grocery-list-react/src/index.css
@@ -0,0 +1,13 @@
+body {
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
+ sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+code {
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
+ monospace;
+}
diff --git a/react-exercises/grocery-list-react/src/index.js b/react-exercises/grocery-list-react/src/index.js
new file mode 100644
index 00000000..f5185c1e
--- /dev/null
+++ b/react-exercises/grocery-list-react/src/index.js
@@ -0,0 +1,17 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import './index.css';
+import App from './App';
+import * as serviceWorker from './serviceWorker';
+
+ReactDOM.render(
+
+
+ ,
+ document.getElementById('root')
+);
+
+// If you want your app to work offline and load faster, you can change
+// unregister() to register() below. Note this comes with some pitfalls.
+// Learn more about service workers: https://bit.ly/CRA-PWA
+serviceWorker.unregister();
diff --git a/react-exercises/grocery-list-react/src/logo.svg b/react-exercises/grocery-list-react/src/logo.svg
new file mode 100644
index 00000000..6b60c104
--- /dev/null
+++ b/react-exercises/grocery-list-react/src/logo.svg
@@ -0,0 +1,7 @@
+
diff --git a/react-exercises/grocery-list-react/src/serviceWorker.js b/react-exercises/grocery-list-react/src/serviceWorker.js
new file mode 100644
index 00000000..b04b771a
--- /dev/null
+++ b/react-exercises/grocery-list-react/src/serviceWorker.js
@@ -0,0 +1,141 @@
+// This optional code is used to register a service worker.
+// register() is not called by default.
+
+// This lets the app load faster on subsequent visits in production, and gives
+// it offline capabilities. However, it also means that developers (and users)
+// will only see deployed updates on subsequent visits to a page, after all the
+// existing tabs open on the page have been closed, since previously cached
+// resources are updated in the background.
+
+// To learn more about the benefits of this model and instructions on how to
+// opt-in, read https://bit.ly/CRA-PWA
+
+const isLocalhost = Boolean(
+ window.location.hostname === 'localhost' ||
+ // [::1] is the IPv6 localhost address.
+ window.location.hostname === '[::1]' ||
+ // 127.0.0.0/8 are considered localhost for IPv4.
+ window.location.hostname.match(
+ /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
+ )
+);
+
+export function register(config) {
+ if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
+ // The URL constructor is available in all browsers that support SW.
+ const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);
+ if (publicUrl.origin !== window.location.origin) {
+ // Our service worker won't work if PUBLIC_URL is on a different origin
+ // from what our page is served on. This might happen if a CDN is used to
+ // serve assets; see https://github.com/facebook/create-react-app/issues/2374
+ return;
+ }
+
+ window.addEventListener('load', () => {
+ const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
+
+ if (isLocalhost) {
+ // This is running on localhost. Let's check if a service worker still exists or not.
+ checkValidServiceWorker(swUrl, config);
+
+ // Add some additional logging to localhost, pointing developers to the
+ // service worker/PWA documentation.
+ navigator.serviceWorker.ready.then(() => {
+ console.log(
+ 'This web app is being served cache-first by a service ' +
+ 'worker. To learn more, visit https://bit.ly/CRA-PWA'
+ );
+ });
+ } else {
+ // Is not localhost. Just register service worker
+ registerValidSW(swUrl, config);
+ }
+ });
+ }
+}
+
+function registerValidSW(swUrl, config) {
+ navigator.serviceWorker
+ .register(swUrl)
+ .then(registration => {
+ registration.onupdatefound = () => {
+ const installingWorker = registration.installing;
+ if (installingWorker == null) {
+ return;
+ }
+ installingWorker.onstatechange = () => {
+ if (installingWorker.state === 'installed') {
+ if (navigator.serviceWorker.controller) {
+ // At this point, the updated precached content has been fetched,
+ // but the previous service worker will still serve the older
+ // content until all client tabs are closed.
+ console.log(
+ 'New content is available and will be used when all ' +
+ 'tabs for this page are closed. See https://bit.ly/CRA-PWA.'
+ );
+
+ // Execute callback
+ if (config && config.onUpdate) {
+ config.onUpdate(registration);
+ }
+ } else {
+ // At this point, everything has been precached.
+ // It's the perfect time to display a
+ // "Content is cached for offline use." message.
+ console.log('Content is cached for offline use.');
+
+ // Execute callback
+ if (config && config.onSuccess) {
+ config.onSuccess(registration);
+ }
+ }
+ }
+ };
+ };
+ })
+ .catch(error => {
+ console.error('Error during service worker registration:', error);
+ });
+}
+
+function checkValidServiceWorker(swUrl, config) {
+ // Check if the service worker can be found. If it can't reload the page.
+ fetch(swUrl, {
+ headers: { 'Service-Worker': 'script' },
+ })
+ .then(response => {
+ // Ensure service worker exists, and that we really are getting a JS file.
+ const contentType = response.headers.get('content-type');
+ if (
+ response.status === 404 ||
+ (contentType != null && contentType.indexOf('javascript') === -1)
+ ) {
+ // No service worker found. Probably a different app. Reload the page.
+ navigator.serviceWorker.ready.then(registration => {
+ registration.unregister().then(() => {
+ window.location.reload();
+ });
+ });
+ } else {
+ // Service worker found. Proceed as normal.
+ registerValidSW(swUrl, config);
+ }
+ })
+ .catch(() => {
+ console.log(
+ 'No internet connection found. App is running in offline mode.'
+ );
+ });
+}
+
+export function unregister() {
+ if ('serviceWorker' in navigator) {
+ navigator.serviceWorker.ready
+ .then(registration => {
+ registration.unregister();
+ })
+ .catch(error => {
+ console.error(error.message);
+ });
+ }
+}
diff --git a/react-exercises/grocery-list-react/src/setupTests.js b/react-exercises/grocery-list-react/src/setupTests.js
new file mode 100644
index 00000000..74b1a275
--- /dev/null
+++ b/react-exercises/grocery-list-react/src/setupTests.js
@@ -0,0 +1,5 @@
+// jest-dom adds custom jest matchers for asserting on DOM nodes.
+// allows you to do things like:
+// expect(element).toHaveTextContent(/react/i)
+// learn more: https://github.com/testing-library/jest-dom
+import '@testing-library/jest-dom/extend-expect';