import { LinearProjectNotificationListItem } from "./LinearProjectNotificationListItem"; import { LinearIssueNotificationListItem } from "./LinearIssueNotificationListItem"; import { NotificationListItemProps } from "../../../notification"; export function LinearNotificationListItem({ notification, mutate }: NotificationListItemProps) { if (notification.metadata.type !== "Linear") return null; switch (notification.metadata.content.type) { case "IssueNotification": return ( ); case "ProjectNotification": return ( ); default: return null; } }