Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created February 18, 2019 12:57
Show Gist options
  • Save amandeepmittal/3285b1ec02c77f16618aa670980e09d3 to your computer and use it in GitHub Desktop.
Save amandeepmittal/3285b1ec02c77f16618aa670980e09d3 to your computer and use it in GitHub Desktop.
import {
StyleSheet,
Text,
View,
TouchableOpacity,
TextInput,
ScrollView
} from 'react-native';
// ...
import TodoList from './TodoList';
// ...
return (
<View style={styles.container}>
{/* ... */}
<ScrollView style={{ width: '100%' }}>
{todos.map(item => (
<TodoList text={item.text} key={item.key} />
))}
</ScrollView>
</View>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment