This commit is contained in:
Elijah Lucian
2021-04-11 14:42:56 -07:00
parent a891fa6a50
commit 0185aa5eec
10 changed files with 22 additions and 48 deletions
+1 -6
View File
@@ -1,8 +1,3 @@
import React from 'react'
import { RouteChildrenProps } from 'react-router'
type Props = RouteChildrenProps & {}
export const Dashboard = (_: Props) => {
export const Dashboard = () => {
return <p>a dashboard</p>
}
+1 -1
View File
@@ -1,4 +1,4 @@
import React, { FormEvent, useState } from 'react'
import { FormEvent, useState } from 'react'
import { useUserContext } from '../contexts/UserContext'
export const Login = () => {
+1 -5
View File
@@ -1,7 +1,3 @@
import React from 'react'
type Props = {}
export const Profile = (props: Props) => {
export const Profile = () => {
return <p>Look, A user profile!</p>
}