about summary refs log tree commit diff
path: root/frontend/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/main.rs')
-rw-r--r--frontend/src/main.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/main.rs b/frontend/src/main.rs
new file mode 100644
index 0000000..22b1599
--- /dev/null
+++ b/frontend/src/main.rs
@@ -0,0 +1,12 @@
+use yew::prelude::*;
+
+#[function_component(App)]
+fn app() -> Html {
+    html! {
+        <h1>{ "Hello World" }</h1>
+    }
+}
+
+fn main() {
+    yew::start_app::<App>();
+}