import { toast } from 'sonner' export function showSubmittedData( data: unknown, title: string = 'You submitted the following values:' ) { toast.message(title, { description: ( // w-[340px]
{JSON.stringify(data, null, 2)}
),
})
}