import { notification } from "antd";

export const openNotification = () => {
    notification.open({
        message: 'Authentication Note',
        description:
            'please login first',
        onClick: () => {
            console.log('Notification Clicked!');
        },
    });
};