diff --git a/components/jwenn-sesyon/index.js b/components/jwenn-sesyon/index.js new file mode 100644 index 0000000..c373f12 --- /dev/null +++ b/components/jwenn-sesyon/index.js @@ -0,0 +1,37 @@ +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 && ( + + )} + + ) +}