질문&답변
2025. 04. 24.
jotai로 변경했을 때 코드
jotai 를 사용 시 questionsLengthState 에서length를 읽어오지 못하는 케이스 처리가 모호하여ActionButtons 컴포넌트에서 아래와 같이 변경했습니다.// const questionsLength = useAtomValue(questionsLengthState);const questionsLength = useAtomValue(surveyState).questions.length;