aboutsummaryrefslogtreecommitdiff
path: root/client/src/Client.elm
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/Client.elm')
-rw-r--r--client/src/Client.elm13
1 files changed, 13 insertions, 0 deletions
diff --git a/client/src/Client.elm b/client/src/Client.elm
new file mode 100644
index 0000000..1db70c7
--- /dev/null
+++ b/client/src/Client.elm
@@ -0,0 +1,13 @@
+module Client exposing (main)
+
+import Browser
+import Html
+
+main : Program () () msg
+main = Browser.element
+ { init = \() -> ((), Cmd.none)
+ , update = \_ model -> (model, Cmd.none)
+ , subscriptions = \_ -> Sub.none
+ , view = \model -> Html.h1 [] [Html.text "Hi"]
+ }
+