+ {
+ faqs.faqs.map((question, i) => {
+ // Generate ids dynamically for each FAQ accordion item.
+ let id = makeId(
+ "hs-basic-with-title-and-arrow-stretched-heading-",
+ i
+ );
+ let collapseId = makeId(
+ "hs-basic-with-title-and-arrow-stretched-collapse",
+ i
+ );
+
+ return (
+
+ );
+ })
+ }
+