jbilcke-hf's picture
jbilcke-hf HF staff
exhumation of this old project 🧟
f42fa3f
raw
history blame contribute delete
207 Bytes
export function Display ({ assetUrl }: { assetUrl: string }) {
return (
<>
<img
src={assetUrl || undefined}
className="fixed w-screen top-0 left-0 right-0"
/>
</>
)
}