import {useState} from 'react' import {Box, Button, Typography} from '@material-ui/core' import Image from 'next/image' import SesyonDialog from './sesyon-dialog' export default function JwennSesyon() { const [ouve, meteOuve] = useState(false) const handleClickOuve = () => { meteOuve(true) } const handleFemen = () => { meteOuve(false) } return ( <> {ouve && ( )} ) }