Skip to content

Commit

Permalink
#21 Refactor: Cards 컴포넌트 프롭스 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yunseul-dev committed Dec 7, 2023
1 parent a719259 commit eb176bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/myPage/MyInterests.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Tabs, rem } from '@mantine/core';
import { FaList, FaSpinner, FaRegCalendarAlt } from 'react-icons/fa';
import Cards from '../common/Cards';
import { userInterests } from '../../constants/mockData';

const MyInterests = () => {
const iconStyle = { width: rem(12), height: rem(12) };
Expand All @@ -18,7 +19,7 @@ const MyInterests = () => {
오픈 예정
</Tabs.Tab>
</Tabs.List>
<Cards />
<Cards cards={userInterests} />
</Tabs>
);
};
Expand Down

0 comments on commit eb176bd

Please sign in to comment.