// audience.jsx — shared React Context for the venue/customer audience toggle.
// App owns the actual state + URL/localStorage sync; this context just exposes
// { audience, setAudience } to every component that wants to read or change it.
window.AudienceContext = React.createContext({
  audience: 'venue',
  setAudience: () => {},
});
