feat: Add NFC tag writing functionality to ChoreCard component, Add Email to sign up
This commit is contained in:
parent
c34da50c8c
commit
9a07689dfe
6 changed files with 452 additions and 11 deletions
|
@ -8,6 +8,7 @@ import ForgotPasswordView from '../views/Authorization/ForgotPasswordView'
|
|||
import LoginView from '../views/Authorization/LoginView'
|
||||
import SignupView from '../views/Authorization/Signup'
|
||||
import UpdatePasswordView from '../views/Authorization/UpdatePasswordView'
|
||||
import ChoreView from '../views/ChoreEdit/ChoreView'
|
||||
import MyChores from '../views/Chores/MyChores'
|
||||
import JoinCircleView from '../views/Circles/JoinCircle'
|
||||
import ChoreHistory from '../views/History/ChoreHistory'
|
||||
|
@ -41,6 +42,10 @@ const Router = createBrowserRouter([
|
|||
path: '/chores/:choreId/edit',
|
||||
element: <ChoreEdit />,
|
||||
},
|
||||
{
|
||||
path: '/chores/:choreId',
|
||||
element: <ChoreView />,
|
||||
},
|
||||
{
|
||||
path: '/chores/create',
|
||||
element: <ChoreEdit />,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue