Refine v5 is here! π
shadcn/ui Integration π
Version: 5.xx.xx
useBack
useBack is a hook that leverages the back method of the routerProvider to perform the "go back" operation in the history stack.
Usageβ
import { useBack } from "@refinedev/core";
const MyComponent = () => {
  const back = useBack();
  return <Button onClick={() => back()}>Go Back</Button>;
};
Was this helpful?