Rustelo/templates/content-website/src/main.rs

18 lines
307 B
Rust
Raw Normal View History

//! jpl-website
2026-02-08 20:37:49 +00:00
//!
//! A Rustelo framework implementation.
//! Generated from basic template.
use leptos::*;
use jpl_website::*;
fn main() {
// Initialize the application
console_error_panic_hook::set_once();
2026-02-08 20:37:49 +00:00
// Mount the application
mount_to_body(|| {
view! { <App/> }
})
2026-02-08 20:37:49 +00:00
}