aboutsummaryrefslogtreecommitdiffstats
path: root/examples/Example02.elm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Example02.elm')
-rw-r--r--examples/Example02.elm12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/Example02.elm b/examples/Example02.elm
new file mode 100644
index 0000000..5e04567
--- /dev/null
+++ b/examples/Example02.elm
@@ -0,0 +1,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 ]