This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* FAQ Component — 45-Minute Challenge | |
* -------------------------------------------- | |
* Tech stack: React (JS or TS) | |
* | |
* Core Features (Must-have): | |
* - Render a list of FAQs from a hardcoded array. | |
* - Clicking a question toggles its answer (expand/collapse). | |
* - Only one answer open at a time (accordion behavior). | |
* - Input filters FAQs in real time (search question or answer). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* FAQ Component — 45-Minute Challenge | |
* -------------------------------------------- | |
* Tech stack: React (JS or TS) | |
* | |
* Core Features (Must-have): | |
* - Render a list of FAQs from a hardcoded array. | |
* - Clicking a question toggles its answer (expand/collapse). | |
* - Only one answer open at a time (accordion behavior). | |
* - Input filters FAQs in real time (search question or answer). |