Hook up data to ReportDialog

This commit is contained in:
Eric Bailey
2024-02-14 20:35:26 -06:00
parent 5587fe73cb
commit 46d95350fb
5 changed files with 156 additions and 42 deletions
+1
View File
@@ -149,6 +149,7 @@ export type InputProps = Omit<TextInputProps, 'value' | 'onChangeText'> & {
value: string
onChangeText: (value: string) => void
isInvalid?: boolean
disabled?: boolean
}
export function createInput(Component: typeof TextInput) {