Some checks failed
Automated Container Build / build-and-push (push) Failing after 8s
9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
'use client';
|
|
|
|
import { createContext } from 'react';
|
|
|
|
import type { PageContextType } from './shared/types.js';
|
|
|
|
const pageContext: React.Context<PageContextType> = createContext<PageContextType>(null);
|
|
|
|
export default pageContext;
|