/** * @umituz/react-native-design-system-organisms - Public API * * Organism design components for React Native - Complex UI patterns * Built from atoms and molecules following atomic design principles * * Usage: * ```typescript * import { ScreenLayout, AppHeader, FormContainer } from '@umituz/react-native-design-system-organisms'; * ``` */ export { FormContainer } from './FormContainer'; export type { FormContainerProps } from './FormContainer'; import type { FormContainerProps } from './FormContainer'; export type OrganismComponentProps = { type: 'FormContainer'; props: FormContainerProps; };