mirror of
https://github.com/wassname/react-webpack-template.git
synced 2026-06-28 14:12:04 +08:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
import 'core-js/fn/object/assign';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from './components/Main';
|
|
|
|
// Render the main component into the dom
|
|
ReactDOM.render(<App />, document.getElementById('app'));
|