AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
import { Alert } from '@/frame/components/ui/Alert'
type Props = {
slug: string
previews: Array<string>
heading: string
}
export function RestPreviewNotice({ slug, previews, heading }: Props) {
return (
<>
<h3 className="h4" id={`${slug}-preview-notices`}>
<a href={`#${slug}-preview-notices`}>{heading}</a>
</h3>
{previews.map((preview, index) => (
<Alert type="NOTE" html={preview} key={JSON.stringify(preview) + index} />
))}
</>
)
}