Skip to content

Instantly share code, notes, and snippets.

@callstack-bot
Last active April 21, 2022 09:45
Show Gist options
  • Save callstack-bot/2f405f2e9ed05191097149a28966ce4f to your computer and use it in GitHub Desktop.
Save callstack-bot/2f405f2e9ed05191097149a28966ce4f to your computer and use it in GitHub Desktop.
import { Text } from './component-library';
const MyButton = ({ children, onPress, subtext }) => (
<div onClick={onPress}>
<Text>{children}</Text>
<span>{subtext}</span>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment