usecrate::*;/// Props for the `my_card` component.
////// Defines the strongly-typed interface for the card wrapper.
#[derive(Default)]pub(crate)structMyCardProps{/// The card title displayed in the header.
pub(crate)title:&'staticstr,
/// The child content rendered inside the card body.
pub(crate)children: VirtualNode,
}