import {useState} from 'react' import {Box, Button, Typography} from '@material-ui/core' import {Signal} from '@icons-pack/react-simple-icons' import SignalDialog from './signal-dialog' export default function JwennSignal() { const [ouve, meteOuve] = useState(false) const handleClickOuve = () => { meteOuve(true) } const handleFemen = () => { meteOuve(false) } return ( <> {ouve && ( )} ) }