// Problem section + Solution promise strip function Problem({ t }) { return (
§ 01 — {t.problem.label} FOUR REALITIES

{t.problem.title}

{t.problem.items.map((item, i) => (
0{i + 1}
{item.n}
{item.t}
{item.d}
))}
); } function PromiseStrip({ t }) { return (
IDNA
§ 02 — The Promise FIVE PROMISES
{t.solution.label}
{t.solution.items.map((line, i) => (
P/0{i + 1}
{line}
))}
); } window.Problem = Problem; window.Promise2 = PromiseStrip;