import { Alert } from '@/frame/components/ui/Alert' type Props = { slug: string previews: Array heading: string } export function RestPreviewNotice({ slug, previews, heading }: Props) { return ( <>

{heading}

{previews.map((preview, index) => ( ))} ) }