index.js 281 字节
Newer Older
B
BingBlog 已提交
1 2
import 'normalize.css/normalize.css';
import 'san-mui/index.css';
B
BingBlog 已提交
3 4 5 6 7 8
import './common/ui/ui-common.styl';

import './home/index';
import './scalars/index';

import App from './App';
B
BingBlog 已提交
9 10 11 12 13
new App({
    data: {
        titleName: 'VisualDL'
    }
}).attach(document.getElementById('root'));