-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #322 from MovieReviewComment/feature/issue-162/fal…
…lback-no-review [#162] Add fallback for no reviews in review list
- Loading branch information
Showing
3 changed files
with
24 additions
and
3 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,13 @@ | ||
import { XCircleIcon } from '@heroicons/react/24/outline'; | ||
|
||
import Text from '@/components/common/server/text'; | ||
|
||
export function NoReview() { | ||
return ( | ||
<div className="flex flex-col p-6 items-center gap-8"> | ||
<XCircleIcon className="w-6 h-6 text-gray-500" /> | ||
|
||
<Text>해당하는 리뷰가 없습니다.</Text> | ||
</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