8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
'use client';
|
|
|
|
import { createContext } from 'react';
|
|
|
|
import type { PageContextType } from './shared/types.js';
|
|
|
|
export default createContext<PageContextType>(null);
|