├── .eslintrc.json ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── components │ ├── Addemployee.js │ ├── Editemployee.js │ ├── Employeelist.js │ ├── Heading.js │ └── Home.js ├── context │ ├── AppReducer.js │ └── GlobalState.js ├── index.js ├── logo.svg ├── serviceWorker.js ├── setupTests.js └── stylesheet │ ├── App.css │ └── styles.css ├── tailwind.config.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Addemployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/components/Addemployee.js -------------------------------------------------------------------------------- /src/components/Editemployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/components/Editemployee.js -------------------------------------------------------------------------------- /src/components/Employeelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/components/Employeelist.js -------------------------------------------------------------------------------- /src/components/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/components/Heading.js -------------------------------------------------------------------------------- /src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/components/Home.js -------------------------------------------------------------------------------- /src/context/AppReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/context/AppReducer.js -------------------------------------------------------------------------------- /src/context/GlobalState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/context/GlobalState.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/stylesheet/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/stylesheet/App.css -------------------------------------------------------------------------------- /src/stylesheet/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/src/stylesheet/styles.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alligatorio/react-contextAPI/HEAD/yarn.lock --------------------------------------------------------------------------------