kaori пре 4 година
родитељ
комит
3fe4344003

+ 0 - 17
packages/app/src/components/InAppNotification/PageUpdateInAppNotification.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 PageUpdateInAppNotification = (props: Props): JSX.Element => {
-
-  return (
-    <>
-      <b>{props.actionUsers}</b> updated {props.notification.target.path}
-    </>
-  );
-
-};