blob: 59cdb911836789fbf64070ff8f0e98f5a9674b9d (
plain)
1
2
3
4
5
6
7
8
9
10
|
// FIXME: This is the entry point of the application, write your code here
import { calculateLayout } from "./utils";
import "./debug";
import { initSocket } from "../utils/streams";
// Initialize the layout
calculateLayout();
initSocket();
|