Skip to content

Instantly share code, notes, and snippets.

@pratik-chakravorty
Created July 8, 2018 19: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 pratik-chakravorty/58845a3269f85aea0ca22885fe387093 to your computer and use it in GitHub Desktop.
Save pratik-chakravorty/58845a3269f85aea0ca22885fe387093 to your computer and use it in GitHub Desktop.
import React, { Component } from "react";
class App extends Component {
render() {
return React.createElement(
"div",
{ className: "App" },
React.createElement("h1", {}, "Hello, React!!")
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment