@blocklet/ui-react
Version:
Some useful front-end web components that can be used in Blocklets.
17 lines (16 loc) • 493 B
TypeScript
interface NotificationComponentProps {
viewAllUrl: string;
keyId: number;
notification?: {
severity?: string;
title?: string;
description?: string;
activity?: any;
actorInfo?: any;
};
content?: React.ReactNode;
}
export default function NotificationComponent({ ref, keyId: key, notification, viewAllUrl, content, }: NotificationComponentProps & {
ref?: React.Ref<unknown>;
}): import("react/jsx-runtime").JSX.Element;
export {};