React

by alexb

HTML

<div id="app"></div>

CSS

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
}

React

const Bar = () => {

}

const App = () => {
	return (
  	
  );
}

ReactDOM.render(<App />, document.querySelector("#app"))