Skip to content

Instantly share code, notes, and snippets.

@AdamRamberg
Created July 21, 2018 16:06
Show Gist options
  • Save AdamRamberg/890c2adb599b7569f9da5f3326dbd843 to your computer and use it in GitHub Desktop.
Save AdamRamberg/890c2adb599b7569f9da5f3326dbd843 to your computer and use it in GitHub Desktop.
react-from-scratch index.js
import React from 'react';
import ReactDOM from 'react-dom';
const App = () => <div>Howdy traveller!</div>;
ReactDOM.render(<App />, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment