Skip to content

Instantly share code, notes, and snippets.

@russiann
Last active May 23, 2020 18:01
Show Gist options
  • Save russiann/0b223e9e5088a1b9c4ecfe776adc758c to your computer and use it in GitHub Desktop.
Save russiann/0b223e9e5088a1b9c4ecfe776adc758c to your computer and use it in GitHub Desktop.
Codemirror
<div id="app"></div>
{
"scripts": [
"react",
"react-dom"
],
"styles": [
"font-awesome"
]
}
function App() {
return <div>
<h1>Hi, I'm GistPad teste👋</h1>
<p>Feel free to edit the HTML, JavaScript and CSS in this playground. The preview will update in real-time, so that you can visually explore your ideas.</p>
<button onClick={() => alert("Hi!")}>Say Hi <span className="fa fa-heart" /></button>
</div>;
}
ReactDOM.render(<App />, document.getElementById("app"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment