Skip to main content
Version: 3.xx.xx

useResourceWithRoute

useResourceWithRoute is used to get the resource object in resources array that you defined in <Refine> by route name.

The hook is used internal in refine. Normally you don't need this hook, but we export it as it may be useful for some use-cases.

import { useResourceWithRoute } from "@pankod/refine-core";

const resourceWithRoute = useResourceWithRoute();

const resource = resourceWithRoute("posts");

API Reference

Return value

DescriptionType
resourceWithRoute(route: string) => IResourceItem