Skip to content

Instantly share code, notes, and snippets.

@vickywane
Created May 13, 2020 23:32
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 vickywane/179d914ed7791f0c106b47ed7614d633 to your computer and use it in GitHub Desktop.
Save vickywane/179d914ed7791f0c106b47ed7614d633 to your computer and use it in GitHub Desktop.
Testing github gists for embeding on my blog. Would delete later
import { hot } from 'react-hot-loader/root';
import React from 'react';
import { Home } from './pages/';
const App = () => {
return (
<div>
<Home />
</div>
);
};
export default hot(App);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment