UNPKG

@tanstack/react-router

Version:

Modern and scalable routing for React applications

13 lines (12 loc) 504 B
import { useRouter } from "./useRouter.js"; import { useStore } from "@tanstack/react-store"; import { isServer } from "@tanstack/router-core/isServer"; //#region src/useCanGoBack.ts function useCanGoBack() { const router = useRouter(); if (isServer ?? router.isServer) return router.stores.location.state.state.__TSR_index !== 0; return useStore(router.stores.location, (location) => location.state.__TSR_index !== 0); } //#endregion export { useCanGoBack }; //# sourceMappingURL=useCanGoBack.js.map