Files
yaak/src-web/components/ToastContext.tsx
2024-12-20 23:49:15 -08:00

5 lines
157 B
TypeScript

import { createContext } from 'react';
import type { ToastState } from './Toasts';
export const ToastContext = createContext<ToastState>({} as ToastState);