├── .gitignore ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt ├── src ├── App.js ├── components │ ├── AddCustomer.js │ ├── AddEmployee.js │ ├── DefinitionSearch.js │ ├── EditEmployee.js │ ├── Employee.js │ ├── Header.js │ └── NotFound.js ├── hooks │ └── UseFetch.js ├── index.css ├── index.js ├── pages │ ├── Customer.js │ ├── Customers.js │ ├── Definition.js │ ├── Dictionary.js │ ├── Employees.js │ ├── Login.js │ └── Register.js └── shared.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/AddCustomer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/components/AddCustomer.js -------------------------------------------------------------------------------- /src/components/AddEmployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/components/AddEmployee.js -------------------------------------------------------------------------------- /src/components/DefinitionSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/components/DefinitionSearch.js -------------------------------------------------------------------------------- /src/components/EditEmployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/components/EditEmployee.js -------------------------------------------------------------------------------- /src/components/Employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/components/Employee.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/components/NotFound.js -------------------------------------------------------------------------------- /src/hooks/UseFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/hooks/UseFetch.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/pages/Customer.js -------------------------------------------------------------------------------- /src/pages/Customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/pages/Customers.js -------------------------------------------------------------------------------- /src/pages/Definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/pages/Definition.js -------------------------------------------------------------------------------- /src/pages/Dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/pages/Dictionary.js -------------------------------------------------------------------------------- /src/pages/Employees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/pages/Employees.js -------------------------------------------------------------------------------- /src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/pages/Login.js -------------------------------------------------------------------------------- /src/pages/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/src/pages/Register.js -------------------------------------------------------------------------------- /src/shared.js: -------------------------------------------------------------------------------- 1 | export const baseUrl = 'http://localhost:8000/'; 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalebCurry/react/HEAD/tailwind.config.js --------------------------------------------------------------------------------