diff --git a/packages/forms/src/index.ts b/packages/forms/src/index.ts index fa531949..b28291d3 100644 --- a/packages/forms/src/index.ts +++ b/packages/forms/src/index.ts @@ -1,4 +1,7 @@ // Components + +import { isFocused } from '@react-native-ama/internal'; + import { FormActions, FormProps, @@ -29,6 +32,9 @@ export { TextInput } from './components/TextInput'; export { useFormField } from './hooks/useFormField'; export { useTextInput } from './hooks/useTextInput'; +// utils +export { isFocused }; + // Types export { type FormProps,