[Next.js] server 컴포넌트와 client 컴포넌트로 분리하기
Next.js로 프로젝트를 진행하면서 리액트에서는 볼 수 없었던 에러를 발견하였다.
// app/login/page.tsx
'use client'
import { useTranslation } from 'react-i18next'
import { Button, PasswordTextField, TextField } from '@yeonsubaek/yeonsui'
import UserForm from '@/components/molecule/Us...
yeonsu.hashnode.dev3 min read