14 lines
350 B
JavaScript
14 lines
350 B
JavaScript
import Styles from 'config/styles';
|
|
import Templates from 'config/templates';
|
|
import createHistory from 'history/lib/createHashHistory';
|
|
import { useQueries } from 'history';
|
|
import app from './../../app';
|
|
|
|
Promise.all([
|
|
Templates.sync(),
|
|
Styles.sync()
|
|
]).then(()=>{
|
|
jQuery('#compiling_layouts').remove();
|
|
app(useQueries(createHistory));
|
|
});
|