Merge branch 'develop' into setup-tests

This commit is contained in:
RcleydsonR
2023-01-27 19:12:32 -03:00
8 changed files with 225 additions and 19575 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;
};