diff --git a/packages/forms/src/components/Form.tsx b/packages/forms/src/components/Form.tsx index 0a172e25..bc5e6b78 100644 --- a/packages/forms/src/components/Form.tsx +++ b/packages/forms/src/components/Form.tsx @@ -5,6 +5,7 @@ import { InteractionManager } from 'react-native'; export type FormProps = React.PropsWithChildren<{ onSubmit: () => boolean | Promise; + ref?: React.RefObject; // need to explicitly type for inference in
component }>; export type FormActions = {