import * as React from 'react'; import { Text } from 'react-native'; const MyText = ({ h1, h2, h3, h4, h5, p, bold, italic, title, style, ...rest })=> { return ( {title} ); }; export { MyText }