/* global React */ function TweaksPanel_App() { const Panel = window.TweaksPanel; const Section = window.TweakSection; const Toggle = window.TweakToggle; if (!Panel || !window.useTweaks) return null; const [t, setTweak] = window.useTweaks(window.TWEAK_DEFAULTS); return (
setTweak('showPaths', v)} /> setTweak('showCityLabels', v)} /> setTweak('showOutline', v)} />
setTweak('seatGrid', v)} /> setTweak('compact', v)} />
); } window.TweaksPanel_App = TweaksPanel_App;