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