forked from sheetjs/sheetjs
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import App from './components/App';
|
||
|
|
||
|
import './styles/index.css';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<React.StrictMode>
|
||
|
<App/>
|
||
|
</React.StrictMode>,
|
||
|
document.getElementById('root')
|
||
|
);
|