15 lines
298 B
Text
15 lines
298 B
Text
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import App from './component/App';
|
||
|
import './index.css';
|
||
|
import 'github-fork-ribbon-css/gh-fork-ribbon.css';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<>
|
||
|
<React.StrictMode>
|
||
|
<App />
|
||
|
</React.StrictMode>
|
||
|
</>,
|
||
|
document.getElementById('root')
|
||
|
);
|