/** * @license * NFP ehf. * Copyright 2018 Jonatan Nilsson * * Available under WTFPL License (http://www.wtfpl.net/txt/copying/) */ 'use strict' //Add debug components to window. Allows us to play with controls //in the console. window.components = {} const m = require('mithril') const Front = require('./front') m.mount(document.getElementById('container'), Front)