beacon / frontend /src /components /Toast.jsx
kiyer's picture
feat: streaming annotation generation and annotator panel
25e1306
Raw
History Blame Contribute Delete
318 Bytes
import React from 'react';
// Toast — fixed bottom-center notification bar.
// Renders nothing when msg is null.
// App owns the toast state and the showToast helper (sets msg, clears after 2600ms).
export default function Toast({ msg }) {
if (!msg) return null;
return <div className="ap-toast">{msg}</div>;
}