-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix:page 형식으로 nav바 변경
- Loading branch information
Showing
5 changed files
with
88 additions
and
99 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import RecentlyIssueIndex from '@/components/recentlyIssue/Index'; | ||
import Navbar from '@/components/common/Navbar'; | ||
import { Suspense } from 'react'; | ||
const NewIssuePage = () => { | ||
return ( | ||
<Suspense fallback={<div>Loading...</div>}> | ||
<div> | ||
<Navbar /> | ||
<RecentlyIssueIndex /> | ||
</div> | ||
</Suspense> | ||
); | ||
}; | ||
|
||
export default NewIssuePage; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import ReportIndex from '@/components/report/ReportIndex'; | ||
import Navbar from '@/components/common/Navbar'; | ||
import { Suspense } from 'react'; | ||
const ReportPage = () => { | ||
return ( | ||
<Suspense fallback={<div>Loading...</div>}> | ||
<div> | ||
<Navbar /> | ||
<ReportIndex /> | ||
</div> | ||
</Suspense> | ||
); | ||
}; | ||
|
||
export default ReportPage; |
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