Spaces:
Paused
Paused
File size: 480 Bytes
c7b9c60 01c8568 c7b9c60 01c8568 c7b9c60 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"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>
)
} |