--- interface Command { name: string; syntax: string; description: string; } interface Props { commands: Command[]; } const { commands } = Astro.props; ---
{commands.map((cmd) => ( ))}
Command Syntax Description
{cmd.name} {cmd.syntax} {cmd.description}