import { GoogleMailThreadListItem } from "./GoogleMailThreadListItem"; import { NotificationListItemProps } from "../../../notification"; export function GoogleMailNotificationListItem({ notification, mutate }: NotificationListItemProps) { if (notification.source_item.data.type !== "GoogleMailThread") return null; return ( ); }