import React from 'react'; import type { INotification, IPipeline } from '../../../domain'; import { NotificationsList } from '../../../notification'; export interface INotificationsPageContentProps { pipeline: IPipeline; updatePipelineConfig: (changes: Partial) => void; } export function NotificationsPageContent(props: INotificationsPageContentProps) { const { pipeline, updatePipelineConfig } = props; function updateNotification(notifications: INotification[]): void { updatePipelineConfig({ notifications }); } return ( ); }