import React, { Component } from 'react' import { View, StyleSheet, ViewStyle } from 'react-native' import formStyles from './styles' import { FormItem } from './FormItem' const styles = StyleSheet.create(formStyles) export interface FormProps { testID?: string style?: ViewStyle } interface FormState { } export class Form extends Component { static displayName = 'Form' static defaultProps = { style: {} } static Item = FormItem constructor (props) { super(props) } render () { return ( {this.props.children} ) } }