import { html } from '../lib/preact.js'; export function OptionButton({ number, label, description, onClick }) { return html` ${number}. ${label} ${description && html` ${description} `} `; }
${description}