16 lines
375 B
TypeScript
16 lines
375 B
TypeScript
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>
|
|
}
|