jbilcke-hf's picture
jbilcke-hf HF staff
initial commit
9a42933
raw
history blame
231 Bytes
export function ExistingModel({
name,
example,
downloadURL
}: {
name: string,
example: string,
downloadURL: string
}) {
return (
<div>
<div>Put thumbnail here</div>
<div>{name}</div>
</div>
)
}