🤞
This commit is contained in:
@@ -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>
|
||||
}
|
||||
Reference in New Issue
Block a user