From 767fdbd3b0bc60b4e5da19214569afb283d004ee Mon Sep 17 00:00:00 2001 From: aldriebarcena Date: Mon, 21 Oct 2024 21:18:55 -0700 Subject: [PATCH] Run format, eslint --- src/components/about/FAQs.tsx | 21 ++++++++++----------- src/data/Faq.js | 18 +++++++++--------- 2 files changed, 19 insertions(+), 20 deletions(-) diff --git a/src/components/about/FAQs.tsx b/src/components/about/FAQs.tsx index e5de54f..15d8375 100644 --- a/src/components/about/FAQs.tsx +++ b/src/components/about/FAQs.tsx @@ -1,22 +1,21 @@ -import React from 'react' +import React from "react"; import Header from "@/components/Header"; -import FAQ from "@/components/about/FAQ" -import faqs from '@/data/FAQ'; +import FAQ from "@/components/about/FAQ"; +import faqs from "@/data/FAQ"; const FAQs = () => { return ( -
-
-
-
-
+
+
+
+
+
-
+
{faqs.map((faq, index) => ( ))} -
- +
); }; diff --git a/src/data/Faq.js b/src/data/Faq.js index 439a7eb..a676c6e 100644 --- a/src/data/Faq.js +++ b/src/data/Faq.js @@ -1,36 +1,36 @@ const faqs = [ { question: "When and where is practice?", - answer: "" + answer: "", }, { question: "Do you need to be experienced to join and participate?", - answer: "" + answer: "", }, { question: "What should you bring?", - answer: "" + answer: "", }, { question: "What does practice look like?", - answer: "" + answer: "", }, { question: "How much are dues?", - answer: "" + answer: "", }, { question: "Need shuttling?", - answer: "" + answer: "", }, { question: "Boxing / Gym Etiquette", - answer: "" + answer: "", }, { question: "Do we spar?", - answer: "" - } + answer: "", + }, ]; export default faqs;