Files
med-notes/.pnpm-store/v10/files/c3/6b32dad2db334ba061abe113cd7ec037a8434460e999aefa1479c2371416a10641f987540f4c3f562277cc6cffd13bdfb179aede227a717773dfb948425881
2025-05-09 05:30:08 +02:00

10 lines
248 B
Plaintext

'use client';
import { createContext } from 'react';
import type { OutlineContextType } from './shared/types.js';
const outlineContext: React.Context<OutlineContextType> = createContext<OutlineContextType>(null);
export default outlineContext;