Skip to content

Instantly share code, notes, and snippets.

@samueljmurray
Created August 30, 2017 16:13
Show Gist options
  • Save samueljmurray/a5ce0ec17cb96819267aea64a0d9d39c to your computer and use it in GitHub Desktop.
Save samueljmurray/a5ce0ec17cb96819267aea64a0d9d39c to your computer and use it in GitHub Desktop.
Component using HeadingText
/* MyComponent.js */
import HeadingText from "HeadingText";
class MyComponent extends React.Component {
render() {
return (
<View>
<HeadingText>Article heading</HeadingText>
<Text>Article body...</Text>
</View>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment