github.com/simpleiot/simpleiot@v0.18.3/frontend/src/Pages/NotFound.elm (about) 1 module Pages.NotFound exposing (page) 2 3 import Gen.Params.NotFound exposing (Params) 4 import Page exposing (Page) 5 import Request 6 import Shared 7 import View exposing (View) 8 9 10 page : Shared.Model -> Request.With Params -> Page 11 page _ _ = 12 Page.static 13 { view = view 14 } 15 16 17 view : View msg 18 view = 19 View.placeholder "NotFound"