Skip to content

Instantly share code, notes, and snippets.

@buglessir
Created January 10, 2019 08:44
Show Gist options
  • Select an option

  • Save buglessir/48ff9b462462d418577efee3f16aef35 to your computer and use it in GitHub Desktop.

Select an option

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