mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-22 23:57:57 +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;
|
|
}
|