import React from 'react'; import { Button, ButtonText, Toast, ToastTitle, useToast } from '@gluestack-ui/themed'; const ToastPlacement = ({ placement = 'top', ...props }: any) => { const toast = useToast(); return ( ); }; ToastPlacement.description = 'This is a basic Toast component example. Toasts are used to communicate a state that affects a system, feature or page'; export default ToastPlacement;