summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-04-25 23:00:14 +0100
committerLibravatar cel 🌸 <cel@bunny.garden>2025-04-25 23:00:14 +0100
commitb1fc29669b54d544e02d2d73b8dc841d43a5c92a (patch)
treec972506b2ab5730a6fb0b750b40871f164d49152 /src/main.rs
downloadmacaw-web-b1fc29669b54d544e02d2d73b8dc841d43a5c92a.tar.gz
macaw-web-b1fc29669b54d544e02d2d73b8dc841d43a5c92a.tar.bz2
macaw-web-b1fc29669b54d544e02d2d73b8dc841d43a5c92a.zip
initial commit
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..8b89d4d
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,6 @@
+use leptos::prelude::*;
+use macaw_web::App;
+
+fn main() {
+ leptos::mount::mount_to_body(App)
+}