import INotification from "../../../../types/notification"; import NotificationItem from "../NotificationItem/NotificationItem"; interface NotificationListProps { notifications: INotification[]; } const NotificationList = ({ notifications }: NotificationListProps) => { return (
{notifications.map((notification) => { return ( ); })}
); }; export default NotificationList;