Skip to content

Instantly share code, notes, and snippets.

@dinotrnka
Last active June 11, 2020 19:10
Show Gist options
  • Save dinotrnka/9d79b45cf6c989cfc802531fb88cd25b to your computer and use it in GitHub Desktop.
Save dinotrnka/9d79b45cf6c989cfc802531fb88cd25b to your computer and use it in GitHub Desktop.
render() {
const { items } = this.props;
const components = items.map(item => <Factory item={item} />);
return (
<View>
{components}
</View>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment