mirror of
https://github.com/correl/planning-poker.git
synced 2024-11-25 11:09:55 +00:00
22 lines
606 B
JavaScript
22 lines
606 B
JavaScript
|
// We need to import the CSS so that webpack will load it.
|
||
|
// The MiniCssExtractPlugin is used to separate it out into
|
||
|
// its own CSS file.
|
||
|
import "../css/app.scss"
|
||
|
|
||
|
// webpack automatically bundles all modules in your
|
||
|
// entry points. Those entry points can be configured
|
||
|
// in "webpack.config.js".
|
||
|
//
|
||
|
// Import deps with the dep name or local files with a relative path, for example:
|
||
|
//
|
||
|
// import {Socket} from "phoenix"
|
||
|
// import socket from "./socket"
|
||
|
//
|
||
|
import "phoenix_html"
|
||
|
|
||
|
import { Elm } from "../src/Main.elm";
|
||
|
|
||
|
var app = Elm.Main.init({
|
||
|
node: document.getElementById("elm-main")
|
||
|
});
|