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

Macro for expanding string arguments into a title

This title will use the .theme-warning class.

example

use webui::*;

fn page() -> Html {
	html! {
		{title_warning!("Text for your title")}
	}
}