| 10 | import React, {useState} from 'react'; |
| 11 | |
| 12 | interface IProps { |
| 13 | fClose: VoidFunction; |
| 14 | fOnSubmit: (name: string, description: string, defaultPriority: number) => Promise<void>; |
| 15 | } |
| 16 | |
| 17 | export const AddApplicationDialog = ({fClose, fOnSubmit}: IProps) => { |
| 18 | const [name, setName] = useState(''); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…