1 2 3 4 5 6 7 8
use yew::{Children, Properties}; #[derive(Properties, PartialEq)] pub struct Props { #[prop_or_default] pub children: Children, pub btn_type: String, }