11 lines
No EOL
299 B
Rust
11 lines
No EOL
299 B
Rust
use leptos::*;
|
|
use super::super::components::{Nav, MonParcours};
|
|
#[component]
|
|
pub fn Experience() -> impl IntoView {
|
|
view! {
|
|
<Nav/>
|
|
<main class="m-0 p-0 bg-surface dark:bg-dark_surface text-on_surface dark:text-dark_on_surface">
|
|
<MonParcours/>
|
|
</main>
|
|
}
|
|
} |