Skip to content

Instantly share code, notes, and snippets.

@buglessir
Created January 10, 2019 08:44
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 buglessir/48ff9b462462d418577efee3f16aef35 to your computer and use it in GitHub Desktop.
Save buglessir/48ff9b462462d418577efee3f16aef35 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { render } from 'react-dom';
import './style.scss';
const App = () => {
return (
<div>
<h1>Hello, World !</h1>
</div>
)
}
render(
<App/>,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment