mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-02-02 03:28:32 +00:00
15 lines
282 B
JavaScript
15 lines
282 B
JavaScript
import React from 'react';
|
|
import ReactDom from 'react-dom';
|
|
import './index.scss';
|
|
|
|
import settings from './client/state/settings';
|
|
|
|
import App from './app/pages/App';
|
|
|
|
settings.setTheme(settings.getThemeIndex());
|
|
|
|
ReactDom.render(
|
|
<App />,
|
|
document.getElementById('root'),
|
|
);
|