Con los números de preguntas y secciones

This commit is contained in:
markosbenitez
2026-06-08 20:25:23 -03:00
parent 307a54dabc
commit 52295a78d0
12 changed files with 367 additions and 33 deletions

View File

@@ -1,9 +1,10 @@
'use client'
import type { ReactNode } from 'react'
import type { QuestionOption } from '@/lib/types'
interface RadioGroupProps {
name: string
legend: string
legend: ReactNode
options: QuestionOption[]
value: string | undefined
required: boolean