xref: /MusicFree/src/utils/toast.ts (revision b882a19d884fffa32f7c8cef31652b909dceaa0f)
1import ToastMessage from 'react-native-toast-message';
2
3const Toast = {
4    success(msg: string) {
5        ToastMessage.show({
6            type: 'success',
7            text1: msg,
8        });
9    },
10    warn(msg: string) {
11        ToastMessage.show({
12            type: 'warn',
13            text1: msg,
14        });
15    },
16};
17
18export default Toast;
19