Skip to content

Instantly share code, notes, and snippets.

@chummypixels
Created November 27, 2019 09:58
Show Gist options
  • Save chummypixels/1d32251bdc6aa68ed72315b2674846ec to your computer and use it in GitHub Desktop.
Save chummypixels/1d32251bdc6aa68ed72315b2674846ec to your computer and use it in GitHub Desktop.
Returning a SectionList component
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