Next.js에서 (괄호) 디렉토리의 역할은?

클라이언트 컴포넌트의 자식 컴포넌트들이 모두다 클라이언트 컴포넌트는 아니다.

모바일 퍼스트 개발을 진행

tailwind merge?

function Box({ children, className }: BoxProps) {
  return (
    <div
      className={twMerge(
        `
    bg-neutral-900
    rounded-lg
    h-hit
    w-full
  `,
        className
      )}
    >
      {children}
    </div>
  );
}

export default Box;