mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 07:48:14 +00:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import { Toast } from "@base-ui/react/toast";
|
|
|
|
export const toastManager = Toast.createToastManager();
|
|
|
|
export default function toast(content: string, duration = 3000) {
|
|
return toastManager.add({ description: content, timeout: duration });
|
|
}
|