Created
May 19, 2016 16:10
-
-
Save liamcurry/b57cf502cf5e65d7a8be697c947dc4f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main exposing (..) | |
import Html exposing (text) | |
import Html.App as App | |
import MyApp exposing (init, update, subscriptions) | |
main : Program Never | |
main = | |
App.program | |
{ init = init | |
, update = update | |
, subscriptions = subscriptions | |
, view = (\_ -> text "") | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Elm = require('./main.js'); | |
Elm.Main.worker() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment