Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- UserStories.md 23 additions, 0 deletionsUserStories.md
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 41 additions, 0 deletionspackage.json
- public/favicon.ico 0 additions, 0 deletionspublic/favicon.ico
- public/img/background.jpg 0 additions, 0 deletionspublic/img/background.jpg
- public/index.html 44 additions, 0 deletionspublic/index.html
- public/logo192.png 0 additions, 0 deletionspublic/logo192.png
- public/logo512.png 0 additions, 0 deletionspublic/logo512.png
- public/manifest.json 26 additions, 0 deletionspublic/manifest.json
- public/robots.txt 3 additions, 0 deletionspublic/robots.txt
- src/App.js 48 additions, 0 deletionssrc/App.js
- src/app/api/apiSlice.js 55 additions, 0 deletionssrc/app/api/apiSlice.js
- src/app/store.js 16 additions, 0 deletionssrc/app/store.js
- src/components/DashFooter.js 35 additions, 0 deletionssrc/components/DashFooter.js
- src/components/DashHeader.js 130 additions, 0 deletionssrc/components/DashHeader.js
- src/components/DashLayout.js 16 additions, 0 deletionssrc/components/DashLayout.js
- src/components/Layout.js 7 additions, 0 deletionssrc/components/Layout.js
- src/components/Public.js 35 additions, 0 deletionssrc/components/Public.js
- src/features/auth/Login.js 115 additions, 0 deletionssrc/features/auth/Login.js
.gitignore
0 → 100644
UserStories.md
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "todo-app-client", | ||
"version": "0.1.0", | ||
"dependencies": { | ||
"@fortawesome/fontawesome-svg-core": "^6.1.2", | ||
"@fortawesome/free-solid-svg-icons": "^6.1.2", | ||
"@fortawesome/react-fontawesome": "^0.2.0", | ||
"@reduxjs/toolkit": "^1.9.5", | ||
"@types/jwt-decode": "^3.1.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-redux": "^8.1.2", | ||
"react-router-dom": "^6.3.0", | ||
"react-scripts": "^5.0.1", | ||
"validator": "^13.11.0" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"react-app", | ||
"react-app/jest" | ||
] | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
} | ||
} |
public/favicon.ico
0 → 100644
3.78 KiB
public/img/background.jpg
0 → 100644
3.36 MiB
public/index.html
0 → 100644
public/logo192.png
0 → 100644
5.22 KiB
public/logo512.png
0 → 100644
9.44 KiB
public/manifest.json
0 → 100644
public/robots.txt
0 → 100644
src/App.js
0 → 100644
src/app/api/apiSlice.js
0 → 100644
src/app/store.js
0 → 100644
src/components/DashFooter.js
0 → 100644
src/components/DashHeader.js
0 → 100644
src/components/DashLayout.js
0 → 100644
src/components/Layout.js
0 → 100644
src/components/Public.js
0 → 100644
src/features/auth/Login.js
0 → 100644