Skip to content

Instantly share code, notes, and snippets.

@joshuacrass
Created September 16, 2018 06:12
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 joshuacrass/2284fbe4c3e377331b609a99051d1cf3 to your computer and use it in GitHub Desktop.
Save joshuacrass/2284fbe4c3e377331b609a99051d1cf3 to your computer and use it in GitHub Desktop.
react-flow app.jsx
// @flow
import React from 'react';
import { hot } from 'react-hot-loader';
import Button from 'Components/button';
import style from './app.css';
const App = () => (
<div className={style.app}>
React Starter
<span role="img" aria-label="rocket ship">
🚀
</span>
<Button />
</div>
);
export default hot(module)(App);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment