├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App │ ├── App.css │ ├── App.js │ └── App.test.js ├── components │ ├── Header.js │ ├── PageHeader.js │ ├── Popup.js │ ├── SideMenu.js │ ├── controls │ │ ├── ActionButton.js │ │ ├── Button.js │ │ ├── Checkbox.js │ │ ├── Controls.js │ │ ├── DatePicker.js │ │ ├── Input.js │ │ ├── RadioGroup.js │ │ └── Select.js │ ├── useForm.js │ └── useTable.js ├── index.css ├── index.js ├── logo.svg ├── pages │ └── Employees │ │ ├── EmployeeForm.js │ │ └── Employees.js ├── serviceWorker.js ├── services │ └── employeeService.js └── setupTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/App/App.js -------------------------------------------------------------------------------- /src/App/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/App/App.test.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/PageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/PageHeader.js -------------------------------------------------------------------------------- /src/components/Popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/Popup.js -------------------------------------------------------------------------------- /src/components/SideMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/SideMenu.js -------------------------------------------------------------------------------- /src/components/controls/ActionButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/controls/ActionButton.js -------------------------------------------------------------------------------- /src/components/controls/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/controls/Button.js -------------------------------------------------------------------------------- /src/components/controls/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/controls/Checkbox.js -------------------------------------------------------------------------------- /src/components/controls/Controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/controls/Controls.js -------------------------------------------------------------------------------- /src/components/controls/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/controls/DatePicker.js -------------------------------------------------------------------------------- /src/components/controls/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/controls/Input.js -------------------------------------------------------------------------------- /src/components/controls/RadioGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/controls/RadioGroup.js -------------------------------------------------------------------------------- /src/components/controls/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/controls/Select.js -------------------------------------------------------------------------------- /src/components/useForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/useForm.js -------------------------------------------------------------------------------- /src/components/useTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/components/useTable.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/Employees/EmployeeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/pages/Employees/EmployeeForm.js -------------------------------------------------------------------------------- /src/pages/Employees/Employees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/pages/Employees/Employees.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/services/employeeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/services/employeeService.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Material-UI-Dialog-Modal-Popup/HEAD/yarn.lock --------------------------------------------------------------------------------