use super::*;
#[derive(Clone, Copy, CustomDebug, Data, Default, New)]
pub struct EuvTocItem {
#[get(type(copy))]
pub level: u8,
#[get(type(copy))]
pub text: &'static str,
#[get(type(copy))]
pub href: &'static str,
}
#[derive(Clone, Copy, CustomDebug, Data, Default, New)]
pub struct EuvTocProps {
#[get(type(copy))]
pub title: &'static str,
#[get(type(copy))]
pub items: &'static [EuvTocItem],
}