11 lines
224 B
Rust
11 lines
224 B
Rust
use crate::components::Hero;
|
|
use dioxus::prelude::*;
|
|
|
|
/// The Home page component that will be rendered when the current route is `[Route::Home]`
|
|
#[component]
|
|
pub fn NewHome() -> Element {
|
|
rsx! {
|
|
Hero {}
|
|
}
|
|
}
|