mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 22:16:49 +01:00
6 lines
225 B
TypeScript
6 lines
225 B
TypeScript
import { createContext } from 'react';
|
|
import type { DialogState } from './Dialogs';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
export const DialogContext = createContext<DialogState>({} as DialogState);
|