소스 검색

delete unused component

kaori 4 년 전
부모
커밋
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}
-    </>
-  );
-
-};