next.js/examples/with-cloudinary/utils/useLastViewedPhoto.ts
useLastViewedPhoto.ts9 lines261 B
import { createGlobalState } from "react-hooks-global-state";

const initialState = { photoToScrollTo: null };
const { useGlobalState } = createGlobalState(initialState);

export const useLastViewedPhoto = () => {
  return useGlobalState("photoToScrollTo");
};
Quest for Codev2.0.0
/
SIGN IN