import { Button } from '@/components/ui/button'; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from '@/components/ui/table'; import AppLayout from '@/layouts/app-layout'; import dashboardcarousel from '@/routes/dashboard/carousel'; import { Head, Link } from '@inertiajs/react'; import { Pencil, Trash2 } from 'lucide-react'; export default function Carousel({ carousel, }: { carousel: [{ alt: string; image_url: string }]; }) { return ( <>

Carousel

S.N. Image Title Action {carousel.map((item, index) => ( {index + 1} {item.alt} {item.alt}
))}
); }