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