Skip to content

Instantly share code, notes, and snippets.

@Vladmel1234
Created December 18, 2016 14:47
Show Gist options
  • Save Vladmel1234/9c4efe90a388eef2897e800c20d48b9d to your computer and use it in GitHub Desktop.
Save Vladmel1234/9c4efe90a388eef2897e800c20d48b9d to your computer and use it in GitHub Desktop.
render react array
var forms = [];
for (var i = 0; i < json.length; i++) {
forms.push(<formjs data={json[i]} submitState={submitState} currentState={currentState} />);
}
React.renderComponent(
<div>{forms}</div>,
document.body
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment