import { Toast, useToast, ToastTitle, ToastDescription } from "@gluestack-ui/themed";
type InfoToastProps = {
message: string;
title:string;
};
export function InfoToast(props:InfoToastProps) {
const toast = useToast();
return(
<Toast>
<ToastTitle>{props.message}</ToastTitle>
</Toast>
)
}