export function ModuleList(props: { title: string; items: Array<{ title: string; path: string; description: string }>; }) { return (

{props.title}

{props.items.map((item) => (
{item.title}

{item.description}

{item.path}
))}
); }