add faq
This commit is contained in:
12
src/model/Faq.ts
Normal file
12
src/model/Faq.ts
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user