18 lines
346 B
JavaScript
18 lines
346 B
JavaScript
|
|
import css from "../css/app.css"
|
||
|
|
|
||
|
|
// webpack automatically bundles all modules in your
|
||
|
|
// entry points. Those entry points can be configured
|
||
|
|
// in "webpack.config.js".
|
||
|
|
//
|
||
|
|
// Import dependencies
|
||
|
|
//
|
||
|
|
import "phoenix_html"
|
||
|
|
|
||
|
|
// Import local files
|
||
|
|
//
|
||
|
|
import socket from "./socket"
|
||
|
|
import room from "./room"
|
||
|
|
|
||
|
|
window.room = room;
|
||
|
|
window.socket = socket;
|