Files
med-notes/.pnpm-store/v10/files/58/f84496fcb0fea212e409ac0edb3611d3e6d4dd1c734ba2e24148773739999b7da929b25c948d3f5293c5b8afcc454ce276ae43b541125ee417b7da5e3d9de9
2025-05-09 05:30:08 +02:00

10 lines
235 B
Plaintext

import { useContext } from 'react';
import PageContext from '../../PageContext.js';
import type { PageContextType } from '../types.js';
export default function usePageContext(): PageContextType {
return useContext(PageContext);
}