Skip to content

Instantly share code, notes, and snippets.

@jasurkurbanov
Last active July 22, 2020 07:31
Show Gist options
  • Save jasurkurbanov/b39ca379aa39b6bc765d6ebc6137bdcf to your computer and use it in GitHub Desktop.
Save jasurkurbanov/b39ca379aa39b6bc765d6ebc6137bdcf to your computer and use it in GitHub Desktop.
MyText-index.js 2
import * as React from 'react';
import { Text } from 'react-native';
const MyText = ({ h1, h2, h3, h4, h5, p, bold, italic, title, style, ...rest })=> {
return (
<Text>{title}</Text>
);
};
export { MyText }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment