blob: 5e0456779eb794cd2023019cb972a9621648ce7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module Example02 exposing (main)
import Browser
import Html exposing (div)
import Html.Attributes exposing (style)
import Mapbox.Element exposing (..)
import Outdoors
main =
div [ style "height" "100vh" ]
[ map [] Outdoors.style ]
|