cinny/src/index.jsx

16 lines
277 B
React
Raw Normal View History

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