'use client'; import { useTranslation } from 'react-i18next'; import YouTube from 'react-youtube'; import type { IGuideItem } from '@/models/IGuideItem'; import style from '@/styles/web.module.scss'; type Props = { items: IGuideItem[]; }; const opts = { height: '195', width: '320', }; export function GuideVideoList({ items }: Props) { const { t } = useTranslation(); return (