mirror of
https://github.com/facebook/react.git
synced 2026-02-26 01:35:00 +00:00
7 lines
168 B
JavaScript
7 lines
168 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from './App';
|
|
import './index.css';
|
|
|
|
ReactDOM.render(<App />, document.getElementById('root'));
|