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

17 lines
311 B
Rust
Raw Normal View History

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