diff options
Diffstat (limited to 'examples/Example02.elm')
-rw-r--r-- | examples/Example02.elm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/Example02.elm b/examples/Example02.elm index 5e04567..c485a7a 100644 --- a/examples/Example02.elm +++ b/examples/Example02.elm @@ -2,11 +2,11 @@ module Example02 exposing (main) import Browser import Html exposing (div) -import Html.Attributes exposing (style) +import Html.Attributes import Mapbox.Element exposing (..) -import Outdoors +import Styles.SatelliteStreets exposing (style) main = - div [ style "height" "100vh" ] - [ map [] Outdoors.style ] + div [ Html.Attributes.style "height" "100vh" ] + [ map [] style ] |