🚧 Setup routes & component skeletons [@asegers]
Showing
.env
0 → 100644
... | ... | @@ -2,7 +2,12 @@ |
"name": "order-management-client", | ||
"version": "0.1.0", | ||
"private": true, | ||
"proxy": "http://localhost:8080", | ||
"dependencies": { | ||
"@chakra-ui/react": "^1.6.0", | ||
"@emotion/react": "^11", | ||
"@emotion/styled": "^11", | ||
"@hookform/resolvers": "^2.4.0", | ||
"@reduxjs/toolkit": "^1.5.1", | ||
"@testing-library/jest-dom": "^5.11.4", | ||
"@testing-library/react": "^11.1.0", | ||
... | ... | @@ -11,16 +16,21 @@ |
"@types/node": "^12.0.0", | ||
"@types/react": "^17.0.0", | ||
"@types/react-dom": "^17.0.0", | ||
"@types/react-router-dom": "^5.1.7", | ||
"bootstrap": "^4.6.0", | ||
"framer-motion": "^4", | ||
"react": "^17.0.2", | ||
"react-bootstrap": "^1.5.2", | ||
"react-dom": "^17.0.2", | ||
"react-hook-form": "^7.4.0", | ||
"react-redux": "^7.2.4", | ||
"react-router-dom": "^5.2.0", | ||
"react-scripts": "4.0.3", | ||
"redux": "^4.1.0", | ||
"redux-logger": "^3.0.6", | ||
"typescript": "^4.1.2", | ||
"web-vitals": "^1.0.1" | ||
"web-vitals": "^1.0.1", | ||
"yup": "^0.32.9" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
... | ... |
src/components/LoginForm.tsx
0 → 100644
src/components/Nav.tsx
0 → 100644
src/components/index.ts
0 → 100644
src/pages/AccountPage.tsx
0 → 100644
src/pages/AuthPage.tsx
0 → 100644
src/pages/OrderIndexPage.tsx
0 → 100644
src/pages/OrderShowPage.tsx
0 → 100644
src/pages/index.ts
0 → 100644
src/router/MainRouter.tsx
0 → 100644
src/services/OrderService.ts
0 → 100644
src/services/index.ts
0 → 100644
src/styles/StyleProvider.tsx
0 → 100644
This diff is collapsed.
Please register or sign in to comment