Updated and added pages

This commit is contained in:
2024-10-09 01:40:36 +09:00
parent 780905fb4e
commit 545ac73e0e
37 changed files with 1552 additions and 291 deletions

14
utils/qAndABox.ts Normal file
View File

@@ -0,0 +1,14 @@
/**
* Types for QAndABox component
* @module utils/qAndABox
*/
/**
* Interface that defines property for QAndABox component
* @property {string} question
*/
interface QAndABoxProperty {
question: string;
}
export type { QAndABoxProperty };