chat / client /src /store /toast.ts
helloya20's picture
Upload 2345 files
f0743f4 verified
import { atom } from 'recoil';
import { NotificationSeverity } from '~/common';
const toastState = atom({
key: 'toastState',
default: {
open: false,
message: '',
severity: NotificationSeverity.SUCCESS,
showIcon: true,
},
});
export default { toastState };