import React from 'react'; import { ScrollView, StyleSheet, View } from 'react-native'; import { themes } from '../constants/colors'; import sharedStyles from '../views/Styles'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import KeyboardView from '../presentation/KeyboardView'; import StatusBar from './StatusBar'; import AppVersion from './AppVersion'; import { isTablet } from '../utils/deviceInfo'; import SafeAreaView from './SafeAreaView'; interface IFormContainer { theme: string; testID: string; children: JSX.Element; } const styles = StyleSheet.create({ scrollView: { minHeight: '100%' } }); export const FormContainerInner = ({ children }: { children: JSX.Element }) => ( {children} ); const FormContainer = ({ children, theme, testID, ...props }: IFormContainer) => ( // @ts-ignore {/* @ts-ignore*/} {children} ); export default FormContainer;