We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hey there ! beautiful project <3
In the read me you put this code
module Example exposing (..) import Browser import Bulma.CDN exposing (..) import Bulma.Modifiers exposing (..) import Bulma.Elements exposing (..) import Bulma.Columns exposing (..) import Bulma.Layout exposing (..) import Html exposing ( Html, main_, text ) type alias Model = {} main : Program () Model Msg main = Browser.sandbox { init = {} , view = view , update = \msg -> \model -> model } view : Model -> Html msg view model = main_ [] [ stylesheet , exampleHero , exampleColumns ] exampleHero : Html msg exampleHero = hero { heroModifiers | size = Medium, color = Primary } [] [ heroBody [] [ container [] [ title H1 [] [ text "Hero Title" ] , title H2 [] [ text "Hero Subtitle" ] ] ] ] exampleColumns : Html msg exampleColumns = section NotSpaced [] [ container [] [ columns columnsModifiers [] [ column columnModifiers [] [ text "First Column" ] , column columnModifiers [] [ text "Second Column" ] , column columnModifiers [] [ text "Third Column" ] ] ] ]
elm complains that at line 13 main : Program () Model Msg Msg is not defined Im a beginner at elm so i can't help ^^'
main : Program () Model Msg
The text was updated successfully, but these errors were encountered:
Note that this can be fixed by lower-casing Msg so that the line instead says: main : Program () Model msg
Msg
main : Program () Model msg
Sorry, something went wrong.
No branches or pull requests
hey there ! beautiful project <3
In the read me you put this code
elm complains that at line 13
main : Program () Model Msg
Msg is not definedIm a beginner at elm so i can't help ^^'
The text was updated successfully, but these errors were encountered: