13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
import CreateSession from "../createSession"
|
|
import TopBar from "../topBar"
|
|
|
|
function Gestion() {
|
|
return (
|
|
<div>
|
|
<h1>Gestion</h1>
|
|
<CreateSession/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Gestion |