blob: a985f2e9defd246632c1978190c79f38b8ec3a9d (
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
import Mapbox.Element exposing (..)
import Styles.Dark exposing (style)
main =
div [ Html.Attributes.style "height" "100vh" ]
[ map [] style ]
|