page.js 269B

1234567891011121314151617
  1. import React from "react";
  2. export default () => {
  3. const pageCtxRef = React.useRef();
  4. const setPageCtx = (ctx) => {
  5. pageCtxRef.current = ctx;
  6. }
  7. const getPageCtx = () => {
  8. return pageCtxRef.current;
  9. }
  10. return {
  11. setPageCtx,
  12. getPageCtx,
  13. }
  14. }