'use client'; import { useTranslation } from 'react-i18next'; import type { IContactQuestion } from '@/models/IContactQuestion'; import style from '@/styles/web.module.scss'; type Props = { items: IContactQuestion[]; }; export function ContactList({ items }: Props) { const { t } = useTranslation(); return (

{t('qanda')}


 
{items.map((el) => (

{el.question}


{el.answer}
))}
); }