diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-12-11 08:39:27 +0100 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:12:47 +0100 |
commit | 6d8916c58d823b13b89477f59bf05373e87f3a98 (patch) | |
tree | 97142e38adc872fe58999b7d01f806d66153be3e /src/index.js | |
parent | fb39b8f31f9323f5e56670de2f382f7b19daed08 (diff) |
RESTRUCT Upadate homescreen layout
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/index.js b/src/index.js index 7b6f84c..eb7b4ac 100644 --- a/src/index.js +++ b/src/index.js @@ -16,8 +16,12 @@ /* CSS */ import './styles/app.scss'; -import { init } from './js/main'; -import { start } from './js/apps'; -window.start = start; -init();
\ No newline at end of file +import { api } from 'agl-js-api'; + +import * as app from './js/app'; +import * as apps from './js/apps'; + +window.apps = apps; +api.init(); +app.init();
\ No newline at end of file |