We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 181e610 + 3532ea0 commit cd7ae79Copy full SHA for cd7ae79
components/CardItem.tsx components/LinkCard.tsxcomponents/CardItem.tsx renamed to components/LinkCard.tsx
@@ -12,7 +12,7 @@ interface linkDataType {
12
createdAt: string;
13
}
14
15
-const CardItem = (info: linkDataType) => {
+const LinkCard = (info: linkDataType) => {
16
const [isSubscribed, seIsSubscribed] = useState(false);
17
const [isOpen, setIsOpen] = useState(false);
18
@@ -78,4 +78,4 @@ const CardItem = (info: linkDataType) => {
78
);
79
};
80
81
-export default CardItem;
+export default LinkCard;
0 commit comments