Skip to content

Commit

Permalink
[#6] 시장호응가설과 XYZ 가설 관련 textarea 를 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
03hoho03 committed Apr 6, 2024
1 parent 86e846b commit 7df7f62
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app/(route)/verification/ibulsin/_components/Textarea/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import cn from 'classnames'
import { useForm } from 'react-hook-form'

interface TextAreaProps {
fieldKey: 'outline' | 'why'
fieldKey: 'outline' | 'why' | 'marketResponse' | 'XYZ'
}

function Textarea({ fieldKey }: TextAreaProps) {
Expand All @@ -29,6 +29,14 @@ function Textarea({ fieldKey }: TextAreaProps) {
register: whyField,
MaxLength: 500,
},
marketResponse: {
register: whyField,
MaxLength: 500,
},
XYZ: {
register: whyField,
MaxLength: 500,
},
}

const countCharacters = () => {
Expand Down

0 comments on commit 7df7f62

Please sign in to comment.