import * as React from 'react' import { StyleSheet , Text as NativeComponent} from 'react-native' import { TextProps } from './interfaces' export class Text extends React.Component { public render() { return ( {this.props.children} ) } public styles() { return { height: 50, } } }