foxhound87
5/7/2016 - 7:56 PM

Let’s start with webpack and babel [EP.01] /src/client.jsx

Let’s start with webpack and babel [EP.01] /src/client.jsx

import React, { Component } from 'react';
import { render } from 'react-dom';

class App extends Component {

  render() {
    return <div>Hello World</div>;
  }
}

render(<App />, document.getElementById('root'));