get session de l'user dans edt
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user