UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

16 lines 499 B
import { useRouterProvider } from "./RouterProviderContext.js"; /** * 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 = () => { const provider = useRouterProvider(); return provider.useInRouterContext(); }; //# sourceMappingURL=useInRouterContext.js.map