| 19 | import styles from "./AddSecureNoteForm.module.css"; |
| 20 | |
| 21 | export interface AddSecureNoteFormProps { |
| 22 | open: boolean; |
| 23 | onClose: () => void; |
| 24 | onSuccess: () => void; |
| 25 | } |
| 26 | |
| 27 | interface FormState { |
| 28 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected