UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

11 lines (9 loc) 214 B
import Toast from "react-native-toast-message"; export default function showSuccessMsg({ msg }: { msg?: string }) { Toast.show({ type: "success", text1: "Success", text2: msg, }); return null; }