2021-07-28 22:15:52 +09:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDom from 'react-dom';
|
2022-02-22 00:59:17 +09:00
|
|
|
import './font';
|
2021-07-28 22:15:52 +09:00
|
|
|
import './index.scss';
|
|
|
|
|
|
|
|
import settings from './client/state/settings';
|
|
|
|
|
|
|
|
import App from './app/pages/App';
|
|
|
|
|
2022-07-09 21:38:35 +09:00
|
|
|
settings.applyTheme();
|
2021-07-28 22:15:52 +09:00
|
|
|
|
2022-12-21 00:17:51 +09:00
|
|
|
ReactDom.render(<App />, document.getElementById('root'));
|