This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/components/video-player.tsx
2025-02-15 21:19:04 +03:00

17 lines
390 B
TypeScript

"use client"
interface VideoPlayerProps {
videoUrl: string
}
export function VideoPlayer({ videoUrl }: VideoPlayerProps) {
return (
<div className="relative aspect-square rounded-lg overflow-hidden">
<video src={videoUrl} controls className="absolute inset-0 w-full h-full object-cover">
Your browser does not support the video tag.
</video>
</div>
)
}