Skip to content

Instantly share code, notes, and snippets.

@Ratstail91
Created May 22, 2019 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ratstail91/c02e27af3ac106d1f0cb5dd4f5b5dc05 to your computer and use it in GitHub Desktop.
Save Ratstail91/c02e27af3ac106d1f0cb5dd4f5b5dc05 to your computer and use it in GitHub Desktop.
render() {
return (
<div>
{Object.keys(this.state.data).map((key, index) => <div key={key}><ReactMarkdown source={this.state.data[key]} escapeHTML={false} /><hr /></div> )}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment