diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-12-09 09:43:26 +0100 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:20:13 +0100 |
commit | 2b87580fc132872266c07b76455192539953b697 (patch) | |
tree | 2a0f5e591aaa84a5dc2b76d52826f031fbb52c5b /src/index.js | |
parent | 29051c70c53999fa9beec83fbd09ec17fd244539 (diff) |
FUNCT Add date & time configuration as mockup
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js index 0c34be4..5f640a8 100644 --- a/src/index.js +++ b/src/index.js @@ -20,6 +20,7 @@ import { api } from 'agl-js-api'; import * as bluetooth from './js/bluetooth'; import * as wifi from './js/wifi'; import * as wired from './js/wired'; +import * as date from './js/date'; /* CSS */ import './styles/app.scss'; @@ -27,9 +28,11 @@ import './styles/app.scss'; window.bluetooth = bluetooth; window.wifi = wifi; window.wired = wired; +window.date = date; api.init(); app.init(); bluetooth.init(); wifi.init(); wired.init(); +date.init(); |