Skip to content

Instantly share code, notes, and snippets.

@reime005
Created December 25, 2020 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reime005/d91f00d8ce0890c0fc17fc96140e0887 to your computer and use it in GitHub Desktop.
Save reime005/d91f00d8ce0890c0fc17fc96140e0887 to your computer and use it in GitHub Desktop.
import { Text } from 'react-native';
const TextEl = ({ children }) => (
<Text
style={{
fontSize: 32,
fontWeight: 'bold',
marginBottom: 24,
backgroundColor: '#fff',
}}>
{children}
</Text>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment