Created
June 18, 2016 17:26
-
-
Save talkol/fcc335d1e45475efe5e9b1f3d70a3192 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Example extends Component { | |
| render() { | |
| return ( | |
| <View style={styles.container}> | |
| <Swipeable> | |
| <Card title='The Winds of Winter' /> | |
| </Swipeable> | |
| <Swipeable> | |
| <Card title='A Dream of Spring' /> | |
| </Swipeable> | |
| </View> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment