mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-28 19:47:08 +02:00
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
import { createContext } from 'react';
|
|
import type { ToastState } from './Toasts';
|
|
|
|
export const ToastContext = createContext<ToastState>({} as ToastState);
|