Skip to content

Commit

Permalink
Merge pull request #6 from elm-land/patch/0.14.1
Browse files Browse the repository at this point in the history
🐞 Bugfix – Update Homepage template used by elm-land init
  • Loading branch information
ryan-haskell committed Jun 8, 2022
2 parents 12744d1 + 35673de commit e5f9a31
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/package.json
@@ -1,6 +1,6 @@
{
"name": "elm-land",
"version": "0.14.0",
"version": "0.14.1",
"description": "Reliable web apps for everyone",
"main": "index.js",
"bin": {
Expand Down
9 changes: 6 additions & 3 deletions cli/src/templates/src/Pages/Home_.elm
@@ -1,8 +1,11 @@
module Pages.Home_ exposing (page)

import Html exposing (Html)
import Html
import View exposing (View)


page : Html msg
page : View msg
page =
Html.text "Hello, world!"
{ title = "Homepage"
, body = [ Html.text "Hello, world!" ]
}

0 comments on commit e5f9a31

Please sign in to comment.