ultron1 / website /src /components /ErrorBanner.jsx
ghostdrive1's picture
v26: complete website — Projects live, Sentinel live topology, 4 new components, CF Worker updated, api.js complete
37f231b
Raw
History Blame Contribute Delete
280 Bytes
// website/src/components/ErrorBanner.jsx
export default function ErrorBanner({ message }) {
if (!message) return null;
return (
<div className="border border-red-200 bg-red-50 text-status-red text-xs px-4 py-3 rounded-lg font-mono">
✗ {message}
</div>
);
}