17 lines
390 B
TypeScript
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>
|
|
)
|
|
}
|
|
|