Initial commit
parents
Showing
.gitignore
0 → 100644
.storybook/main.js
0 → 100644
.storybook/preview.js
0 → 100644
README.md
0 → 100644
db.json
0 → 100644
eslint.config.js
0 → 100644
global.css
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
{ | |||
"name": "seat", | |||
"private": true, | |||
"version": "0.0.0", | |||
"type": "module", | |||
"scripts": { | |||
"dev": "vite", | |||
"build": "vite build", | |||
"lint": "eslint .", | |||
"preview": "vite preview", | |||
"storybook": "storybook dev -p 6006", | |||
"build-storybook": "storybook build" | |||
}, | |||
"dependencies": { | |||
"axios": "^1.9.0", | |||
"classnames": "^2.5.1", | |||
"react": "^19.1.0", | |||
"react-dom": "^19.1.0", | |||
"react-icons": "^5.5.0", | |||
"react-router-dom": "^7.6.2", | |||
"react-toastify": "^11.0.5" | |||
}, | |||
"devDependencies": { | |||
"@eslint/js": "^9.25.0", | |||
"@storybook/addon-onboarding": "^9.0.4", | |||
"@storybook/react-vite": "^9.0.4", | |||
"@types/react": "^19.1.2", | |||
"@types/react-dom": "^19.1.2", | |||
"@vitejs/plugin-react": "^4.4.1", | |||
"eslint": "^9.25.0", | |||
"eslint-plugin-react-hooks": "^5.2.0", | |||
"eslint-plugin-react-refresh": "^0.4.19", | |||
"eslint-plugin-storybook": "^9.0.4", | |||
"globals": "^16.0.0", | |||
"prop-types": "^15.8.1", | |||
"storybook": "^9.0.4", | |||
"vite": "^6.3.5" | |||
}, | |||
"eslintConfig": { | |||
"extends": [ | |||
"plugin:storybook/recommended" | |||
] | |||
}, | |||
"overrides": { | |||
"storybook": "$storybook" | |||
} | |||
} |
src/Api/Api.js
0 → 100644
src/App.jsx
0 → 100644
src/Assets/Failed.png
0 → 100644
261 KB
src/Assets/Login.png
0 → 100644
240 KB
src/Assets/QRcode.png
0 → 100644
301 KB
src/Assets/Success.png
0 → 100644
265 KB
src/components/Form/Button/Button.jsx
0 → 100644
src/components/Form/Button/Button.module.css
0 → 100644
src/components/Form/form/Input.jsx
0 → 100644
src/components/Form/form/Input.stories.jsx
0 → 100644
src/components/Form/form/Styles.module.css
0 → 100644
src/components/Forms/Login/Login.jsx
0 → 100644
src/components/Forms/Login/Login.module.css
0 → 100644
src/components/Forms/Login/Login.stories.jsx
0 → 100644
src/components/Forms/SignUp/Sign.jsx
0 → 100644
src/components/Forms/SignUp/Sign.stories.jsx
0 → 100644
src/components/Layout/Card/Header.jsx
0 → 100644
src/components/Layout/Legend/Legend.jsx
0 → 100644
src/components/Response/Index.jsx
0 → 100644
src/components/Response/Response.stories.jsx
0 → 100644
src/components/Response/Styles.module.css
0 → 100644
src/components/Top-level/Counter/Counter.jsx
0 → 100644
src/components/Top-level/Screen/Screen.jsx
0 → 100644
src/components/Top-level/Seat/Seat.jsx
0 → 100644
src/context/Index.jsx
0 → 100644
src/main.jsx
0 → 100644
src/pages/Forms.jsx
0 → 100644
src/pages/SeatBooking.jsx
0 → 100644
src/pages/SeatLimit.jsx
0 → 100644
src/pages/Styles.module.css
0 → 100644
vite.config.js
0 → 100644