1 2 3 4 5 6 7 8 9
use super::*; /// Props for the [`euv_markdown`] component. #[derive(Clone, Copy, CustomDebug, Data, Default, New)] pub struct EuvMarkdownProps { /// The block AST to render. #[get(type(copy))] pub blocks: &'static [EuvMdBlock], }