src/components/video.tsx'use client'import { useRef, useEffect, useCallback } from 'react'import { useInView } from 'react-intersection-observer'import { studioUrl } from '@/utils/studio-helpers'type VideoProps = {src: stringclassName?: stringloop?: booleanmuted?: booleanplaysInline?: booleanthreshold?: number'aria-label'?: string}export function Video({src,className,loop = true,
Showing the first 20 lines.
Get full code