import { useState } from 'react'; import { Page, Block, Button, Panel } from '@cap-rel/smartcommon'; function MyPage() { const [isPanelOpen, setIsPanelOpen] = useState(false); return ( setIsPanelOpen(false)} position="right" >

Contenu du panneau

Informations supplémentaires

); }