mirror of
https://github.com/wassname/react-webpack-template.git
synced 2026-06-28 02:46:48 +08:00
6 lines
151 B
JavaScript
6 lines
151 B
JavaScript
import React from 'react';
|
|
import App from './Main';
|
|
|
|
// Render the main component into the dom
|
|
React.render(<App />, document.getElementById('app'));
|