├── README.md ├── package.json ├── public └── index.html └── src ├── AddUserForm.jsx ├── App.js ├── EditUserForm.jsx ├── UserTable.js ├── index.js └── styles.css /README.md: -------------------------------------------------------------------------------- 1 | # CRUD_frontend 2 | Created with CodeSandbox 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/CRUD_frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/CRUD_frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /src/AddUserForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/CRUD_frontend/HEAD/src/AddUserForm.jsx -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/CRUD_frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/EditUserForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/CRUD_frontend/HEAD/src/EditUserForm.jsx -------------------------------------------------------------------------------- /src/UserTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/CRUD_frontend/HEAD/src/UserTable.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/CRUD_frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/CRUD_frontend/HEAD/src/styles.css --------------------------------------------------------------------------------