frontend/src/index.js

13 lines
237 B
JavaScript
Raw Permalink Normal View History

2020-05-11 09:47:56 +00:00
import React from 'react';
import { render } from 'react-dom';
2020-08-19 18:04:52 +00:00
import App from './App';
2020-05-11 09:47:56 +00:00
2020-05-11 16:39:04 +00:00
import 'rsuite/lib/styles/index.less';
render(
// <React.StrictMode>
<App />,
// </React.StrictMode>,
2020-05-11 09:47:56 +00:00
document.getElementById('root')
);