| 3 | import CodeExample from "@/components/CodeExample"; |
| 4 | |
| 5 | interface FAQItem { |
| 6 | question: string; |
| 7 | answer: React.ReactNode; |
| 8 | } |
| 9 | |
| 10 | export default function FAQ() { |
| 11 | const faqItems: FAQItem[] = [ |
nothing calls this directly
no outgoing calls
no test coverage detected