Massive/toast.ts

8 lines
169 B
TypeScript

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