ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
17 lines (15 loc) • 460 B
text/typescript
import { useRouterProvider } from './RouterProviderContext';
/**
* Hook to check if we are inside a router context.
* This is a router-agnostic wrapper that uses the configured router provider.
*
* @example
* const isInRouter = useInRouterContext();
* if (!isInRouter) {
* // Need to wrap with a router
* }
*/
export const useInRouterContext = (): boolean => {
const provider = useRouterProvider();
return provider.useInRouterContext();
};