9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
// 1st party.
|
|
import {App} from './app';
|
|
// Application.
|
|
const app = new App();
|
|
// Create the socket connection.
|
|
app.connect();
|
|
// Just inject it into global for now.
|
|
window.humus = app;
|