function Stats({ lang = 'th' }) { const items = window.tr('stats', lang); return (
{items.map(([n, l], i) => (
{n}
{l}
))}
); } window.Stats = Stats;