├── LICENSE ├── README.md ├── backend ├── .gitignore ├── app.py ├── models.py ├── requirements.txt ├── routes.py └── wsgi.py └── frontend ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public ├── explode.png ├── python.png ├── react.png └── vite.svg ├── src ├── App.jsx ├── components │ ├── CreateUserModal.jsx │ ├── EditModal.jsx │ ├── Navbar.jsx │ ├── UserCard.jsx │ └── UserGrid.jsx ├── dummy │ └── dummy.js └── main.jsx └── vite.config.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/backend/models.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/backend/routes.py -------------------------------------------------------------------------------- /backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/backend/wsgi.py -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/explode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/public/explode.png -------------------------------------------------------------------------------- /frontend/public/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/public/python.png -------------------------------------------------------------------------------- /frontend/public/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/public/react.png -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/components/CreateUserModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/src/components/CreateUserModal.jsx -------------------------------------------------------------------------------- /frontend/src/components/EditModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/src/components/EditModal.jsx -------------------------------------------------------------------------------- /frontend/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/src/components/Navbar.jsx -------------------------------------------------------------------------------- /frontend/src/components/UserCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/src/components/UserCard.jsx -------------------------------------------------------------------------------- /frontend/src/components/UserGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/src/components/UserGrid.jsx -------------------------------------------------------------------------------- /frontend/src/dummy/dummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/src/dummy/dummy.js -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakorkmez/react-python-tutorial/HEAD/frontend/vite.config.js --------------------------------------------------------------------------------