This commit is contained in:
focp212@naver.com
2025-10-31 08:35:50 +09:00
parent 5b28674121
commit 4d40fa1cf7
13 changed files with 92 additions and 90 deletions

View File

@@ -28,7 +28,7 @@ export const SortTypeBox = ({
}
<span key={ option.key }>
<button
className={ `sort-btn ${(sortType === option.key) ? 'active' : ''}` }
className={ `sort-btn ${(sortType === option.key)? 'active': ''}` }
onClick={ () => onClickToSort(option.key) }
>{ option.label }</button>
</span>