Skip to content

Instantly share code, notes, and snippets.

@joshuacrass
Last active September 10, 2018 11:16
Show Gist options
  • Save joshuacrass/47fad0f9a83be35a585a65fe8210676c to your computer and use it in GitHub Desktop.
Save joshuacrass/47fad0f9a83be35a585a65fe8210676c to your computer and use it in GitHub Desktop.
react-starter app.jsx
import React from "react";
import { hot } from "react-hot-loader";
import style from "./app.css";
const App = () => {
return <div className={style.app}>react Starter 🚀 </div>;
};
export default hot(module)(App);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment