// How it works — four steps function How({ t }) { const narrow = window.useNarrow(768); return (
{t.steps.map((s, i) => ( ))}
); } function Step({ s, last, short }) { return (
{s.num} {s.code}

{s.title}

{s.body}

{!last && ( )}
); } window.How = How;