Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created February 18, 2019 12:57
Show Gist options
  • Save amandeepmittal/6bbe0c0621f750ec8df1e3d26046c2c7 to your computer and use it in GitHub Desktop.
Save amandeepmittal/6bbe0c0621f750ec8df1e3d26046c2c7 to your computer and use it in GitHub Desktop.
// App.js
<ScrollView style={{ width: '100%' }}>
{todos.map(item => (
<TodoList
text={item.text}
key={item.key}
checked={item.checked}
setChecked={() => checkTodo(item.key)}
deleteTodo={() => deleteTodo(item.key)}
/>
))}
</ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment