add a flag that flattens the prop that gets passed to Repeat's children ```jsx const MyList = (items) => { <Repeat foreach={items} flatten> <MyListItem /> </Repeat> } const MyListItem = ({value}) => <Text>{value}</Text> ```