Skip to content

Commit

Permalink
fix: 워크 스페이스 이름 임시 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
djk01281 committed Dec 1, 2024
1 parent 0b91a2d commit a85b1e5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ interface WorkspaceNavProps {
}

export function WorkspaceNav({ workspaceTitle }: WorkspaceNavProps) {
// 빌드 에러 해결을 위한 임시 코드.
console.log(workspaceTitle);
return (
<div className="flex flex-row items-center justify-center gap-2">
<h1 className="text-md font-semibold">{workspaceTitle}</h1>
<h1 className="text-md font-semibold">{"환영합니다 👋🏻"}</h1>
</div>
);
}

0 comments on commit a85b1e5

Please sign in to comment.