diff options
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/index.js b/src/index.js index 962b5a6..7b6f84c 100644 --- a/src/index.js +++ b/src/index.js @@ -14,8 +14,10 @@ * limitations under the License. */ -/* JS */ -import './js/AFB.js'; - /* CSS */ -import './styles/app.scss';
\ No newline at end of file +import './styles/app.scss'; +import { init } from './js/main'; +import { start } from './js/apps'; + +window.start = start; +init();
\ No newline at end of file |