import React from 'react'; import { InAppNotification as IInAppNotification } from '../../interfaces/in-app-notification'; // import PagePath from 'components/PageList/PagePath'; interface Props { actionUsers: string notification: IInAppNotification onClick: () => void } export const PageCommentNotification = (props: Props) => { console.log('propsHOge', props); return ( {/* TODO: show page path by #78706 */} {props.actionUsers} commented on {props.notification.target} {/* */} ); };