14 lines
480 B
JavaScript
14 lines
480 B
JavaScript
import { showToast } from '../stores/toastStore';
|
|
|
|
export default function ToastTrigger() {
|
|
return (
|
|
<button
|
|
type="button"
|
|
onClick={() => showToast('Sustav je spreman za rad.', 'info', 2500)}
|
|
className="fixed bottom-4 right-4 z-50 rounded-full border border-border-hairline bg-canvas-elevated px-4 py-2 text-xs font-semibold text-text-main shadow-sm hover:bg-canvas-deep"
|
|
>
|
|
Test Toast
|
|
</button>
|
|
);
|
|
}
|