-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
7264129
commit 7367c66
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
src/pages/myDashboard/components/DashboardList/DashboardList.module.scss
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.container { | ||
width: 1024px; | ||
} | ||
|
||
.dashboardList { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
grid-template-rows: 70px 70px; | ||
gap: 13px; | ||
} | ||
|
||
.pagination { | ||
height: 40px; | ||
display: flex; | ||
justify-content: flex-end; | ||
align-items: center; | ||
gap: 13px; | ||
} |
26 changes: 26 additions & 0 deletions
26
src/pages/myDashboard/components/DashboardList/DashboardList.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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import styles from './DashboardList.module.scss'; | ||
|
||
/* 대시보드 목록을 보여주는 컴포넌트입니다. | ||
- 대시보드 목록을 보여주는 ul 부분과 | ||
- 다음 목록을 불러오기 위한 부분으로 나뉩니다 */ | ||
|
||
function DashboardList() { | ||
return ( | ||
<div className={styles.container}> | ||
<ul className={styles.dashboardList}> | ||
<li>새로운 대시보드</li> | ||
<li>코드잇</li> | ||
<li>3분기 계획</li> | ||
<li>회의록</li> | ||
<li>중요 문서함</li> | ||
<li>테스트 123</li> | ||
</ul> | ||
<div className={styles.pagination}> | ||
<p>1페이지 중 1</p> | ||
<div>페이지 이동 버튼</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default DashboardList; |
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