import React from "react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@/components/ui/table"; export function SonListSkeleton() { return ( Your Sons Name Trigger Actions {[...Array(5)].map((_, index) => (
))}
); }