From 98b144f23ce771a22dce73c827be7924993cfca5 Mon Sep 17 00:00:00 2001 From: Humberto Alfonso Díaz Date: Thu, 5 Dec 2019 13:06:24 +0100 Subject: FUNCT Add wifi support --- src/index.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/index.js') diff --git a/src/index.js b/src/index.js index 00da226..879e10e 100644 --- a/src/index.js +++ b/src/index.js @@ -18,9 +18,12 @@ import { init } from './js/app'; import { api } from 'agl-js-api'; import * as bluetooth from './js/bluetooth'; +import * as wifi from './js/wifi'; /* CSS */ import './styles/app.scss'; +window.bluetooth = bluetooth; +window.wifi = wifi; api.init(); init(); -- cgit 1.2.3-korg