| 5 | import { FaChevronDown, FaChevronUp } from 'react-icons/fa'; |
| 6 | |
| 7 | interface FAQ { |
| 8 | id: number; |
| 9 | question: string; |
| 10 | answer: string; |
| 11 | } |
| 12 | |
| 13 | export default function FAQSection() { |
| 14 | const t = useTranslations('FAQ'); |
nothing calls this directly
no outgoing calls
no test coverage detected