-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/메인페이지 파티모집프리뷰구현 어드민페이지지pr용 #1300 #1304
The head ref may contain hidden characters: "feat/\uBA54\uC778\uD398\uC774\uC9C0-\uD30C\uD2F0\uBAA8\uC9D1\uD504\uB9AC\uBDF0\uAD6C\uD604-\uC5B4\uB4DC\uBBFC\uD398\uC774\uC9C0\uC9C0pr\uC6A9-#1300"
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 지금 admin에 있는 className들이 불필요한게 너무 많아서 정리하면 좋을거 같아요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아래 코드에서 보이는 대부분의 className이 안쓰이는것 같아요
안쓰이는 className만 지우면 될 것 같아요
<TableContainer className={styles.tableContainer} component={Paper}>
<Table className={styles.table} aria-label='UserManagementTable'>
<AdminTableHead tableName={'partyCategory'} table={tableTitle} />
<TableBody className={styles.tableBody}>
{categories.map((c) => (
<TableRow key={c.categoryId} className={styles.tableRow}>
{tableFormat['partyCategory'].columns.map((columnName) => {
return (
<TableCell
📌 개요