Massive/toast.ts
Brandon Presley f778426aba Run prettier
Something happened with the deno formatter,
I can't remember what! Hahahahahaahahaha
2023-08-12 15:23:02 +12:00

8 lines
169 B
TypeScript

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