mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-10 22:44:32 +08:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from './App';
|
|
import './index.css';
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.getElementById('root')
|
|
);
|