This commit is contained in:
EsioFreitas
2023-01-25 17:33:57 -03:00
parent d09f6c45cf
commit 6793684c49
9 changed files with 11165 additions and 64 deletions

12
src/model/Faq.ts Normal file
View File

@@ -0,0 +1,12 @@
export type Faq = Section[];
export type Section = {
name: string;
items: Question[];
};
export type Question = {
title: string;
content: string;
isOpen?: boolean;
};