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

Macro for expanding string arguments into a title

This title will use the .theme-danger class.

example

use webui::*;

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