* chore: workspace notifications refactor * fix: url params * fix: added null checks to avoid run time errors * fix: notifications header color fix
8 lines
271 B
TypeScript
8 lines
271 B
TypeScript
import { NotificationCardListRoot } from "./notification-card/root";
|
|
|
|
export type TNotificationListRoot = {
|
|
workspaceSlug: string;
|
|
workspaceId: string;
|
|
};
|
|
|
|
export const NotificationListRoot = (props: TNotificationListRoot) => <NotificationCardListRoot {...props} />;
|