Skip to content

Commit

Permalink
Update FAQS.jsx
Browse files Browse the repository at this point in the history
Added dividers for space breaks
  • Loading branch information
aindree-2005 authored Oct 7, 2023
1 parent ddd179a commit 222d2c9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions components/FAQS.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import {Accordion, AccordionItem} from "@nextui-org/react";
import {Divider} from "@nextui-org/react";

export default function FAQS() {
const ans1=
Expand All @@ -10,6 +11,7 @@ export default function FAQS() {
"No, Code Club JU and GDSC, despite both being involved in encouraging coding habits among students, donot refer to the same entity.";

return (
<Divider className="my-10" />
<Accordion selectionMode="multiple">
<AccordionItem key="1" aria-label="Q 1" title="Can those new to programming join GDSC-JU community?">
{ans1}
Expand All @@ -21,5 +23,6 @@ export default function FAQS() {
{ans3}
</AccordionItem>
</Accordion>
<Divider className="my-10" />
);
}

0 comments on commit 222d2c9

Please sign in to comment.