Skip to content

Instantly share code, notes, and snippets.

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