Files
med-notes/.pnpm-store/v10/files/a9/43e37c9571e39760e2606488de4c86738512174b38ebf139695e545d4082757735a354ac8c44deae385aff70669f20758228b47569f3682c74ce8d66c22e4e
2025-05-09 05:30:08 +02:00

10 lines
253 B
Plaintext

import { useContext } from 'react';
import OutlineContext from '../../OutlineContext.js';
import type { OutlineContextType } from '../types.js';
export default function useOutlineContext(): OutlineContextType {
return useContext(OutlineContext);
}