Massive/toast.ts

8 lines
162 B
TypeScript
Raw Normal View History

import {DeviceEventEmitter} from 'react-native'
export const TOAST = 'toast'
export function toast(value: string) {
DeviceEventEmitter.emit(TOAST, {value})
}