use dioxus::prelude::*; use jacquard::types::tid::Tid; /// The Blog page component that will be rendered when the current route is `[Route::Blog]` /// /// The component takes a `id` prop of type `i32` from the route enum. Whenever the id changes, the component function will be /// re-run and the rendered HTML will be updated. #[component] pub fn NotebookPage(id: Tid, children: Element) -> Element { rsx! { div { } } }