EsioFreitas 6793684c49 add faq
2023-01-25 17:33:57 -03:00

13 lines
179 B
TypeScript

export type Faq = Section[];
export type Section = {
name: string;
items: Question[];
};
export type Question = {
title: string;
content: string;
isOpen?: boolean;
};