-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
16 additions
and
14 deletions.
There are no files selected for viewing
9 changes: 6 additions & 3 deletions
9
apps/frontend/src/features/pageSidebar/ui/WorkspaceNav/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
// TODO: 워크스페이스 이름 받아야함 | ||
export function WorkspaceNav() { | ||
interface WorkspaceNavProps { | ||
title: string; | ||
} | ||
|
||
export function WorkspaceNav({ title }: WorkspaceNavProps) { | ||
return ( | ||
<div className="flex flex-row items-center justify-center gap-2"> | ||
<h1 className="text-md font-semibold">{"환영합니다 👋🏻"}</h1> | ||
<h1 className="text-md font-semibold">{title}</h1> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters