Created
March 2, 2017 02:16
-
-
Save boniattirodrigo/9b9dc5ed861310b4f59937a0bcadaa40 to your computer and use it in GitHub Desktop.
Using React Native component
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
import { | |
Text, | |
ScrollView, | |
} from 'react-native'; | |
class Carousel extends Component { | |
render() { | |
return ( | |
<ScrollView> | |
<Text>Lorem ipsum...</Text> | |
<Text>Lorem ipsum...</Text> | |
<Text>Lorem ipsum...</Text> | |
<Text>Lorem ipsum...</Text> | |
</ScrollView> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment