I'm trying to import Html exposing (beginnerProgram), as it is shown there and there, but the compiler doesn't agree : "Module Html does not expose beginnerProgram".
import Html exposing (beginnerProgram)
Html
beginnerProgram
Thanks in advance.
The above answer is for older versions of ELM. An updated answer is below.
Add import statement:
import Browser exposing (sandbox)
Use sandbox: Note that we are not using Never - as in old code samples - we are using () instead:
Never
()
main : Program () Model Msg main = Browser.sandbox { init = initialModel , view = view , update = update }
Works beautifully: and I hope this helps you.
Solved by importing from Html.App instead of Html.
Html.App
Copyright © 2021 Jogjafile Inc.
The above answer is for older versions of ELM. An updated answer is below.
Updated For Elm 0.19:
Add import statement:
Use sandbox: Note that we are not using
Never
- as in old code samples - we are using()
instead:Works beautifully: and I hope this helps you.