2021-07-28 18:45:52 +05:30
|
|
|
import React from 'react';
|
|
|
|
|
import ReactDom from 'react-dom';
|
2022-02-21 21:29:17 +05:30
|
|
|
import './font';
|
2021-07-28 18:45:52 +05:30
|
|
|
import './index.scss';
|
|
|
|
|
|
|
|
|
|
import settings from './client/state/settings';
|
|
|
|
|
|
|
|
|
|
import App from './app/pages/App';
|
|
|
|
|
|
2022-07-09 18:08:35 +05:30
|
|
|
settings.applyTheme();
|
2021-07-28 18:45:52 +05:30
|
|
|
|
2022-12-20 20:47:51 +05:30
|
|
|
ReactDom.render(<App />, document.getElementById('root'));
|