React Context
import { createContext, useState, useEffect } from 'react';
const NotificationContext = createContext({
notification: null, // { title, message, status }
showNotification: function (notificationData) {},
hideNotification: function () {},
});
...
thilina.hashnode.dev1 min read