1 2 3 4 5 6 7 8
use yew::prelude::*; /// A properties structures which only has children. #[derive(Clone, Debug, PartialEq, Properties)] pub struct ChildrenProperties { #[prop_or_default] pub children: Html, }