usecrate::theme::Theme;usedioxus::prelude::*;/// A vertical menu used in the navigation aside.
pubfnSidebar<'a>(cx:Scope<'a, SidebarProps<'a>>)-> Element{render!{
div {}}}/// The [`Sidebar`] properties struct for the configuration of the component.
#[derive(Debug, PartialEq, Props)]pubstructSidebarProps<'a>{/// Theme.
theme:&'a Theme,
}