mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-19 07:26:59 +01:00
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import { useContext } from 'react';
|
|
import { ToastContext } from '../components/ToastContext';
|
|
|
|
export function useToast() {
|
|
return useContext(ToastContext).actions;
|
|
}
|