12 lines
158 B
Rust
12 lines
158 B
Rust
use dioxus::prelude::*;
|
|
|
|
use crate::{components::Navbar, Route};
|
|
|
|
#[component]
|
|
pub fn MainLayout() -> Element {
|
|
rsx! {
|
|
Navbar {}
|
|
Outlet::<Route> {}
|
|
}
|
|
}
|