1bdb7f4e3a
* fix type * fix missing member from reaction * stop context menu event propagation in msg modal * prevent encode blur hash from freezing app * replace roboto font with inter and fix weight * add recent emoji when selecting emoji * fix room latest evt hook * add option to drop typing status
21 lines
517 B
JavaScript
21 lines
517 B
JavaScript
/* eslint-disable import/first */
|
|
import React from 'react';
|
|
import ReactDom from 'react-dom';
|
|
import { enableMapSet } from 'immer';
|
|
import '@fontsource/inter/variable.css';
|
|
import 'folds/dist/style.css';
|
|
import { configClass, varsClass } from 'folds';
|
|
|
|
enableMapSet();
|
|
|
|
import './index.scss';
|
|
|
|
import settings from './client/state/settings';
|
|
|
|
import App from './app/pages/App';
|
|
|
|
document.body.classList.add(configClass, varsClass);
|
|
|
|
settings.applyTheme();
|
|
|
|
ReactDom.render(<App />, document.getElementById('root'));
|