File size: 231 Bytes
9a42933 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export function ExistingModel({
name,
example,
downloadURL
}: {
name: string,
example: string,
downloadURL: string
}) {
return (
<div>
<div>Put thumbnail here</div>
<div>{name}</div>
</div>
)
} |