Skip to content

Instantly share code, notes, and snippets.

@antosan
Created April 27, 2019 13:15
Show Gist options
  • Select an option

  • Save antosan/acf9a5a3886500321ce528e116fa44f8 to your computer and use it in GitHub Desktop.

Select an option

Save antosan/acf9a5a3886500321ce528e116fa44f8 to your computer and use it in GitHub Desktop.
react-webpack-demo
import React from "react";
import "./App.css";
class App extends React.Component {
render() {
return (
<div className="app">
<header className="app-header">
<h1 className="app-title">Welcome to React</h1>
</header>
<p className="app-intro">
A JavaScript library for building user interfaces.
</p>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment