Files
GMW/services/frontend-leptos/frontend/src/app.rs
T

11 lines
327 B
Rust
Raw Normal View History

use leptos::prelude::*;
#[component]
pub fn App() -> impl IntoView {
view! {
<div style="display: flex; align-items: center; justify-content: center; height: 100vh; font-family: 'Poppins', sans-serif; font-size: 1.5rem; background: #0f172a; color: #e2e8f0;">
"Hello from Leptos"
</div>
}
}