This commit is contained in:
Elijah
2021-03-07 18:18:51 -07:00
parent 8f35bf735d
commit 11cf67b594
29 changed files with 27700 additions and 9 deletions
+15
View File
@@ -0,0 +1,15 @@
import React from 'react'
import { useEffect } from 'react'
import { RouteComponentProps } from 'react-router-dom'
type Props = RouteComponentProps<{ clientId: string }>
export const Session = (props: Props) => {
const { clientId } = props.match.params
const [submitted, setSubmitted] = useState(false)
useEffect(() => {})
return <div>Session {clientId}</div>
}