diff --git a/.changeset/cuddly-fireants-cheer.md b/.changeset/cuddly-fireants-cheer.md new file mode 100644 index 00000000..fca3fb13 --- /dev/null +++ b/.changeset/cuddly-fireants-cheer.md @@ -0,0 +1,5 @@ +--- +"@relab/react-native-modals": patch +--- + +Added useModalContainerPosition() to export diff --git a/packages/react/react-native-modals/src/index.ts b/packages/react/react-native-modals/src/index.ts index 81397126..95933185 100644 --- a/packages/react/react-native-modals/src/index.ts +++ b/packages/react/react-native-modals/src/index.ts @@ -1,4 +1,5 @@ -export * from './components' export type { ModalProps, ModalDefinition } from './types' export { ModalRegistry } from './registry' export { build } from './build' +export { useModalContainerPosition } from './hooks/use-modal-container-position' +export * from './components'