import { useContext } from 'react'; import { AppConfigContext } from '../appConfigContext'; /** * Fetch an instance of AppConfig from the React context. */ export function useAppConfig() { return useContext(AppConfigContext); }