Toast 通知和加载骨架屏的完整示例
import { useToast } from '@/lib/hooks/use-toast';
const { toast } = useToast();
toast({
title: '标题',
description: '描述信息',
variant: 'default', // 或 'destructive'
duration: 5000, // 毫秒
});import { Skeleton } from '@/components/ui/skeleton';
<Skeleton className="h-4 w-[250px]" />
<Skeleton className="h-12 w-12 rounded-full" />