Skip to content

Commit c8fdd50

Browse files
authored
Merge pull request #96 from chrisbolin/patch-1
Don't import two things to the same Html alias
2 parents c39d1fd + a39658d commit c8fdd50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/01-button.elm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import Html exposing (Html, button, div, text)
2-
import Html.App as Html
2+
import Html.App as App
33
import Html.Events exposing (onClick)
44

55

66

77
main =
8-
Html.beginnerProgram
8+
App.beginnerProgram
99
{ model = model
1010
, view = view
1111
, update = update

0 commit comments

Comments
 (0)