Skip to content

Instantly share code, notes, and snippets.

@CelineChole
Last active July 12, 2020 01:23
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 CelineChole/29c5734e9fdc65d4f5bf77ba914e3173 to your computer and use it in GitHub Desktop.
Save CelineChole/29c5734e9fdc65d4f5bf77ba914e3173 to your computer and use it in GitHub Desktop.
awesome
<div id="app"></div>
{
"scripts": [
"react",
"react-dom"
],
"styles": [
"font-awesome"
]
}
function App() {
return (
<div>
<h1>Playground integrated to VS code 👋</h1>
<p>#socool!</p>
<button onClick={() => alert("Hi!")}>
Say Hi <span className="fa fa-heart" />
</button>
</div>
);
}
ReactDOM.render(<App />, document.getElementById("app"));
body {
background-color: lightblue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment