INDUSTRIAL PROTOCOLSSYSTEM FEEDBACKTOAST
Toast
A non-interruptive system notification artifact. Engineered for high-visibility operational feedback within the architectural flow.
Execution
Positions
Variants
API Reference
Usage
// app/layout.tsx
<ToastProvider position="bottom-right">
{children}
</ToastProvider>
// Usage within components:
const { toast } = useToast();
toast({
title: "PROTOCOL_INITIALIZED",
description: "Secure node established successfully.",
type: "success",
});