export function useAppState()

in front-end-resources/react-meeting/src/providers/AppStateProvider.tsx [30:38]


export function useAppState(): AppStateValue {
  const state = useContext(AppStateContext);

  if (!state) {
    throw new Error('useAppState must be used within AppStateProvider');
  }

  return state;
}