All files / client/src/app historyContext.ts

100% Statements 3/3
100% Branches 0/0
100% Functions 1/1
100% Lines 3/3

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);
};