import formatDate from "../../utils/date/formatDate.js"; import formatTime from "../../utils/date/formatTime.js"; import styles from "./NotificationCard.module.css" import Notification from "../../interfaces/notification.interface"; interface NotificationCardProps { notifications: Notification[]; deleteNotification: (id: number) => void; } function NotificationCard({ notifications, deleteNotification }: NotificationCardProps) { return ( notifications.map((notification, index) => (
{notification.content}