Created
November 27, 2019 09:58
-
-
Save chummypixels/1d32251bdc6aa68ed72315b2674846ec to your computer and use it in GitHub Desktop.
Returning a SectionList component
This file contains 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 React from 'react'; | |
import {StyleSheet, View, Text, SectionList} from 'react-native'; | |
export default class SectionListBasics extends React.Component { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<SectionList | |
/> | |
</View> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment