import React from 'react'; import { InAppNotification as IInAppNotification } from '../../interfaces/in-app-notification'; interface Props { actionUsers: string notification: IInAppNotification onClick: () => void } export const PageCommentNotification = (props: Props): JSX.Element => { return ( <> {props.actionUsers} commented on {props.notification.target.path} ); };