feat: add view responses page
Docker Build and Push / build-and-push (push) Successful in 6m35s

This commit is contained in:
2026-02-22 19:03:35 +07:00
parent 4014ec802a
commit 631cac2dc3
9 changed files with 1077 additions and 10 deletions
+13
View File
@@ -75,3 +75,16 @@ export interface SubmitFormAnswer {
export interface SubmitFormPayload {
answers: SubmitFormAnswer[]
}
export interface FormResponseAnswer {
question_id: string
question_title: string
question_type: QuestionType
answer: string
}
export interface FormResponse {
id: string
submitted_at: string
answers: FormResponseAnswer[]
}