You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
375 B

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>
}