LifeSim / src /components /business /video-renderer.tsx
jbilcke-hf's picture
jbilcke-hf HF staff
preparing the code for interactivityg
01c8568
raw
history blame contribute delete
480 Bytes
"use client"
export const VideoRenderer = ({ url }: { url?: string }) => {
if (!url) {
return <div className="flex w-full h-screen items-center justify-center text-center">
<div>Rendering first frames.. (might take around 30s)</div>
</div>
}
return (
<div className="w-full py-8 px-2">
<video
src={url}
muted
autoPlay
loop
className="w-full rounded-md overflow-hidden"
/>
</div>
)
}