kaori 4 лет назад
Родитель
Сommit
fe06851031
1 измененных файлов с 0 добавлено и 17 удалено
  1. 0 17
      packages/app/src/components/InAppNotification/PageCommentInAppNotification.tsx

+ 0 - 17
packages/app/src/components/InAppNotification/PageCommentInAppNotification.tsx

@@ -1,17 +0,0 @@
-import React from 'react';
-import { IInAppNotification } from '../../interfaces/in-app-notification';
-
-interface Props {
-  actionUsers: string
-  notification: IInAppNotification
-  onClick: () => void
-}
-export const PageCommentInAppNotification = (props: Props): JSX.Element => {
-
-  return (
-    <>
-      <b>{props.actionUsers}</b> commented on {props.notification.target.path}
-    </>
-  );
-
-};