yew-debugger 0.0.1

Yew debugger collector
Documentation
1
2
3
4
5
6
7
#[macro_export]
macro_rules! impl_yew_debugger {
    ($model:ty,$message:ty) => {
        use yew_debugger::YewComponentDebug;
        impl YewComponentDebug<$model, $message> for $model {}
    };
}