子要素 (Children)
Children
は特別なプロパティタイプで、HTMLの子要素のようにネストされた Html
を受け取ることができます。
use yew::{function_component, html, Html, Properties};
#[function_component]
fn App() -> Html {
html! {
<HelloWorld>
<span>{"Hey what is up ;)"}</span>
<h1>{"THE SKY"}</h1>
</HelloWorld>
}
}
#[derive(Properties, PartialEq)]
pub struct Props {
pub children: Html, // `children` キーは重要です!
}
#[function_component]
fn HelloWorld(props: &Props) -> Html {
html! {
<div class="very-stylized-container">
{ props.children.clone() } // この方法で子要素を転送できます
</div>
}
}