АЧ
console.log(route.params.title)
return (
<Container>
<Grid>
<Col style={{ backgroundColor: '#635DB7', height: 200, justifyContent: "center", alignItems: "center" }}>
<H1 style={{color: "white"}}>SSSSSSSSSSSS</H1>
</Col>
</Grid>
</Container>
)
}
//КАК ПЕРЕДАЮ:
{
reminders.map((r, i) => (
<ReminderItem onPress={() => this.props.navigation.navigate("ReminderItem", r)} key={i} >
<Text>{ r.title } </Text>
</ReminderItem>
))
}