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