Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 | 520x 520x 1745x | import { createContext, useContext } from "react";
import { Location } from "react-router";
// Exported so the provider can populate it; consumers read it through the hook
export const HistoryContext = createContext<Location | null>(null);
export const usePreviousLocation = (): Location | null => {
return useContext(HistoryContext);
};
|