get session de l'user dans edt

This commit is contained in:
trochas
2026-01-10 12:47:08 +01:00
parent fca7362bb7
commit 8d844d2b2f
6 changed files with 68 additions and 23 deletions

View File

@@ -0,0 +1,23 @@
import { useState } from 'react';
import { Activite, Ligne } from '../../classes';
import '../style/objectList.css';
type Props = {
ligne: Ligne
}
function ObjectLigne({ligne}: Props) {
const [open, setOpen] = useState<boolean>(false);
function handleOpen(): void {
setOpen(!open);
}
return (
<div>
{/* TODO */}
</div>
)
}
export default ObjectLigne