You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
232 B
React

import toast from 'react-hot-toast'
export const toastSuccess = (message) => {
toast.success((t) => {
return <div onClick={() => toast.dismiss(t.id)}>{message}</div>
})
}
export const CASH_DEPOSIT = 'CASH_DEPOSIT'