-
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.
[Feat] 대시보드 페이지 timeline date issue 및 css 수정 (#326)
* fix: timeline month 넘어가지 않는 이슈 컴포넌트 분리로 해결 * style: 인수인계sec cursor 이슈 및 태그 글자수 이슈 수정 * refactor: timeline naming 수정 --------- Co-authored-by: Jeongbowoon <happyanne200212@gmail/com>
- Loading branch information
1 parent
2fcad8f
commit dc57735
Showing
8 changed files
with
82 additions
and
49 deletions.
There are no files selected for viewing
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
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Suspense } from 'react'; | ||
|
||
import DateProvider from '@/page/archiving/index/DateProvider'; | ||
import TimeLineHeader from '@/page/archiving/index/component/TimeLine/TimeLineHeader/TimeLineHeader'; | ||
import Timeline from '@/page/dashboard/component/Timeline/Timeline/Timeline'; | ||
|
||
const TimelineSection = () => { | ||
const teamId = localStorage.getItem('teamId'); | ||
|
||
return ( | ||
<DateProvider teamId={teamId!}> | ||
<TimeLineHeader /> | ||
<Suspense> | ||
<Timeline /> | ||
</Suspense> | ||
</DateProvider> | ||
); | ||
}; | ||
|
||
export default TimelineSection; |
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