mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-24 15:12:01 +03:00
557 B
557 B
elm-pages 2.0
elm-pages add Projects.Username_.Repo_
type alias RouteParams =
{ username : String, repo : String }
page : Page RouteParams StaticData
page =
Page.noStaticData
{ head = head
, staticRoutes = StaticHttp.succeed []
}
|> Page.buildNoState { view = view }
view :
StaticPayload StaticData RouteParams
-> Document Msg
view static =
{ title = "TODO title"
, body = []
}
Core Concepts
- Page Modules (
Page.*.elm
) DataSource
sShared.elm
,Site.elm