| 10 | import React from 'react'; |
| 11 | |
| 12 | interface IProps { |
| 13 | name?: string; |
| 14 | admin?: boolean; |
| 15 | fClose: VoidFunction; |
| 16 | fOnSubmit: (name: string, pass: string, admin: boolean) => Promise<void>; |
| 17 | isEdit?: boolean; |
| 18 | } |
| 19 | |
| 20 | const AddEditUserDialog = ({ |
| 21 | fClose, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…