10 lines
235 B
Plaintext
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);
|
|
}
|