diff --git a/lazy-timer-fe/src/components/Notification.jsx b/lazy-timer-fe/src/components/Notification.jsx new file mode 100644 index 0000000..18f157f --- /dev/null +++ b/lazy-timer-fe/src/components/Notification.jsx @@ -0,0 +1,38 @@ +import React from 'react'; +import { MdOutlineCancel } from 'react-icons/md'; + +import { Button } from '.'; +import { chatData } from '../data/dummy'; +import { useStateContext } from '../contexts/ContextProvider'; + +const Notification = () => { + const { currentColor } = useStateContext(); + + return ( +
+
+
+

Notifications

+ +
+
+
+ {chatData?.map((item, index) => ( +
+ {item.message} +
+

{item.message}

+

{item.desc}

+
+
+ ))} +
+
+
+
+ ); +}; + +export default Notification;