Skip to content

Instantly share code, notes, and snippets.

@pinglinh
Created March 9, 2018 14:52
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 pinglinh/9c46f7fa657121fe6527e2f6fe6889f1 to your computer and use it in GitHub Desktop.
Save pinglinh/9c46f7fa657121fe6527e2f6fe6889f1 to your computer and use it in GitHub Desktop.
import React from "react";
import ReactDOM from "react-dom";
const Index = () => {
return <div>Hello React!</div>;
};
ReactDOM.render(<Index />, document.getElementById("index"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment