// this goes into pwa/index.js
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
const App = () => (
Hello from React
);
ReactDOM.render(, document.getElementById('root'));
// Hot Module Replacement
if (module.hot) {
module.hot.accept();
}