// --- Tweaks panel --- function TweaksPanel({ state, setState }) { const themes = [ { k: 'green', label: 'GREEN' }, { k: 'amber', label: 'AMBER' }, ]; const heroes = [ { k: 'boot', label: 'BOOT' }, { k: 'arcade', label: 'ARCADE' }, { k: 'tv', label: 'TV' }, ]; const liveOpts = [ { k: true, label: 'LIVE' }, { k: false, label: 'OFFLINE' }, ]; return (
◉ TWEAKS _
{themes.map(t => ( ))}
{heroes.map(h => ( ))}
{liveOpts.map(l => ( ))}
); } Object.assign(window, { TweaksPanel });