chore: Initial commit

This commit is contained in:
Tristan Daniël Maat 2025-03-09 06:04:10 +08:00
commit f2783d49c6
Signed by: tlater
GPG key ID: 49670FD774E43268
8 changed files with 2903 additions and 0 deletions

6
src/main.rs Normal file
View file

@ -0,0 +1,6 @@
use leptos::prelude::*;
fn main() {
console_error_panic_hook::set_once();
leptos::mount::mount_to_body(|| view! { <p>"Hello, world!"</p> })
}