feat: add view responses page
Docker Build and Push / build-and-push (push) Has been cancelled

This commit is contained in:
2026-02-22 19:03:35 +07:00
parent 4014ec802a
commit 218e8d10a0
8 changed files with 1076 additions and 7 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[]
}