1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 03:29:37 +02:00
flame/client/src/components/NotificationCenter/NotificationCenter.tsx
2022-11-30 20:46:28 +00:00

28 lines
869 B
TypeScript

import { useAtomValue } from 'jotai';
import { Notification as NotificationInterface } from '../../interfaces';
import { notificationsAtom } from '../../state/notification';
import { Notification } from '../UI';
import classes from './NotificationCenter.module.css';
export const NotificationCenter = (): JSX.Element => {
const { notifications } = useAtomValue(notificationsAtom);
return (
<div
className={classes.NotificationCenter}
style={{ height: `${notifications.length * 75}px` }}
>
{notifications.map((notification: NotificationInterface) => {
return (
<Notification
title={notification.title}
message={notification.message}
url={notification.url || null}
id={notification.id}
key={notification.id}
/>
);
})}
</div>
);
};