import React from "react"; import { useLocation } from "@remix-run/react"; import { useResource } from "@refinedev/core"; type RefineRoutesProps = { children?: ( renderedRoute: JSX.Element | undefined, pathname: string | undefined, ) => JSX.Element; }; export const RefineRoutes = ({ children }: RefineRoutesProps) => { const { resource, action } = useResource(); const { pathname } = useLocation(); const resourceAction = resource && action ? resource[action] : undefined; const ResourceActionComponent = typeof resourceAction === "function" ? resourceAction : typeof resourceAction === "object" ? resourceAction.component : undefined; return ( <> {children ? ( children( ResourceActionComponent ? ( ) : undefined, pathname ?? undefined, ) ) : ResourceActionComponent ? ( ) : undefined} ); };