Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
CI/CD Pipeline / Build Docker Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Cleanup (push) Has been cancelled
17 lines
307 B
Rust
17 lines
307 B
Rust
//! 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/> }
|
|
})
|
|
}
|