Skip to content

Faq Component

The FAQ component is a reusable component designed to display frequently asked questions in an accordion format. This component can be easily integrated into any part of your application and is completely customizable according to your needs.

UI Preview

Faq section - Web Light

Usage

To use the Faq component, import it. Here is a basic example:

import React from "react";
import Faq from "@app-launch-kit/components/custom/faq/BasicFaq";
export const FaqSection = () => {
return <Faq />;
};