Files
remark42/frontend/app/components/root/index.ts
T
Pavel MineevandUmputun 5825a55b69 Update frontend
* change root dit and change way to import modules
* update deps to latest versions
* use latest tools for building bundles
* rewrite webpack config
* use nomodule technique for loading modern bundle
* inject polyfills by babel usebuiltins
* update eslint rules
* rename all style files to CSS
* use postcss preset env for building styles
* proper typescript typing
* put all html files to templates folder
* etc
2021-01-12 13:39:26 -06:00

16 lines
518 B
TypeScript

import './root.css';
import './__copyright/root__copyright.css';
import './__input/root__input.css';
import './__preloader/root__preloader.css';
import './__pinned-comment/root__pinned-comment.css';
import './__pinned-comments/root__pinned-comments.css';
import './__show-more/root__show-more.css';
import './__thread/root__thread.css';
import './__threads/root__threads.css';
import './_theme/_dark/root_theme_dark.css';
import './_theme/_light/root_theme_light.css';
export { Root, ConnectedRoot } from './root';