| 8 | import Tooltip from '@mui/material/Tooltip'; |
| 9 | |
| 10 | interface IProps { |
| 11 | fClose: VoidFunction; |
| 12 | fOnSubmit: (name: string) => Promise<void>; |
| 13 | } |
| 14 | |
| 15 | const AddClientDialog = ({fClose, fOnSubmit}: IProps) => { |
| 16 | const [name, setName] = useState(''); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…