以下のコードで、`ProductList`コンポーネントの`children`にはどのような内容が渡されますか? ```jsx <ProductList title="おすすめ商品"> <Product name="商品A" price={1000} /> <Product name="商品B" price={2000} /> <div>特別セール中!</div> </ProductList> ```