| 10 | import {NumberField} from '../common/NumberField'; |
| 11 | |
| 12 | interface IProps { |
| 13 | appName: string; |
| 14 | defaultPriority: number; |
| 15 | fClose: VoidFunction; |
| 16 | fOnSubmit: (message: string, title: string, priority: number) => Promise<void>; |
| 17 | } |
| 18 | |
| 19 | export const PushMessageDialog = ({appName, defaultPriority, fClose, fOnSubmit}: IProps) => { |
| 20 | const [title, setTitle] = useState(''); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…