Macro webui::title_black
source · [−]macro_rules! title_black {
( $($x:expr ),* ) => { ... };
}Expand description
Macro for expanding string arguments into a title
This title will use the .theme-black class.
example
use webui::*;
fn page() -> Html {
html! {
{title_black!("Text for your title")}
}
}