Skip to content

Commit 49ab5df

Browse files
committed
Fix: CardItem -> LinkCard로 변경
1 parent bcebebc commit 49ab5df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pages/link/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { SearchInput } from "../../components/Search/SearchInput";
2-
import AddLinkInput from "../../components/Link/AddLinkInput";
32
import Container from "@/components/Layout/Container";
4-
import FolderTag from "../../components/FolderTag";
53
import CardsLayout from "@/components/Layout/CardsLayout";
6-
import CardItem from "@/components/CardItem";
4+
import AddLinkInput from "../../components/Link/AddLinkInput";
5+
import FolderTag from "../../components/FolderTag";
6+
import LinkCard from "../../components/LinkCard";
77
import Image from "next/image";
88

99
const LinkPage = () => {
@@ -55,7 +55,7 @@ const LinkPage = () => {
5555
</div>
5656
<CardsLayout>
5757
{list.map((link) => (
58-
<CardItem key={link.id} info={link} />
58+
<LinkCard key={link.id} info={link} />
5959
))}
6060
</CardsLayout>
6161
</Container>

0 commit comments

Comments
 (0)