mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-01 14:16:00 +00:00
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import './index.css';
|
|
import App from './App';
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
document.getElementById('root')
|
|
);
|