Skip to content

Commit

Permalink
๐Ÿ”จ Refactor: ์Šคํ”ผ๋„ˆ ์ฃผ์„
Browse files Browse the repository at this point in the history
  • Loading branch information
JayChae committed May 10, 2024
1 parent 4a49556 commit 64ae45e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/pages/ListPage/MonthlyChart/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,20 @@ const MonthlyChart = () => {
</CustomButton>
</div>
<Tab currentTab={currentTab} handleTabChange={handleTabChange} />
{/* <ul className={chartClass}>
<ul className={chartClass}>
{idolList.map((idol, index) => {
return <ChartElement key={idol.id} idol={idol} ranking={index + 1} />;
})}
</ul> */}
<div className={styles.loading_spinner}>
</ul>
<div className={styles.moreButton}>
<CustomButton btnText="๋”๋ณด๊ธฐ" onClick={handleMoreBtn} />
</div>
{/* <div className={styles.loading_spinner}>
<LoadingSpinner />
</div>
<div className={styles.moreButton}>
<CustomButton btnText={<LoadingSpinner />} disabled={true} />
</div>
</div> */}
</div>
);
};
Expand Down

0 comments on commit 64ae45e

Please sign in to comment.