Files
hackathon/front_end/src/components/pages/pageGestion.tsx
2026-01-11 19:29:59 +01:00

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