mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-13 11:15:12 +01: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')
|
||
|
);
|