proc-macro to automatically derive Properties structs from args for Yew components
No more extra one-off Props structs!
```rust use yewautoprops::autopropscomponent; use yew::prelude::*;
fn CoolComponent(#[propordefault] test: &i8, smth: &usize) -> Html { println!("test: {}", test);
html! {
<div>
<p>{ smth }</p>
</div>
}
} ```
```rust use yewautoprops::autopropscomponent; use yew::prelude::*;
fn coolcomponent(#[propor_default] test: &i8, smth: &usize) -> Html { println!("test: {}", test);
html! {
<div>
<p>{ smth }</p>
</div>
}
} ```