Skip to content

Commit 69028fd

Browse files
author
Jeongbowoon
committed
#47 fix: 주석 삭제
1 parent 0f5ac2f commit 69028fd

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/page/showcase/component/ClubProfileCard/ClubProfileCard.style.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ import { css } from '@emotion/react';
22

33
import { theme } from '@/common/style/theme/theme';
44

5-
export const containerStyle = css({
6-
width: '24.35rem', //나중에 바꿔야함
7-
});
8-
95
export const imageStyle = css({
106
width: '100%',
117
height: '14rem',

src/page/showcase/component/ClubProfileCard/ClubProfileCard.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import {
2-
containerStyle,
32
descriptionStyle,
43
detailStyle,
54
imageStyle,
@@ -14,13 +13,13 @@ interface ClubProfileCardProps {
1413

1514
const ClubProfileCard = ({ title, detail, Image }: ClubProfileCardProps) => {
1615
return (
17-
<section css={containerStyle}>
16+
<>
1817
<Image css={imageStyle} />
1918
<div css={descriptionStyle}>
2019
<p css={titleStyle}>{title}</p>
2120
<p css={detailStyle}>{detail}</p>
2221
</div>
23-
</section>
22+
</>
2423
);
2524
};
2625

0 commit comments

Comments
 (0)