UNPKG

@rsksmart/rif-ui

Version:

Exposes common components to be re used in RIF projects

10 lines (9 loc) 247 B
import { FC } from 'react'; export interface FAQSectionProps { answer: string; initiallyExpanded?: boolean; question: string; className?: string; } declare const FAQSection: FC<FAQSectionProps>; export default FAQSection;