Macro webui::title_white

source ·
macro_rules! title_white {
    ( $($x:expr ),* ) => { ... };
}
Expand description

Macro for expanding string arguments into a title

This title will use the .theme-white class.

example

use webui::prelude::*;

fn page(contexts: &Contexts) -> Html {
    html! {
        {title_white!("Text for your title")}
    }
}