import { RefObject, createContext, useContext, useRef } from 'react'; import { Outlet } from 'react-router'; import { TOP_BAR_HEIGHT } from './TopBar'; const PageContext = createContext<{ ref: RefObject } | undefined>(undefined); export const usePageLayout = () => useContext(PageContext); export const Component = () => { const ref = useRef(null); return (
); };