728x90
as const
-
[TS] enum과 object의 차이가 무엇인가요? 꼭 enum을 사용하면 안되나요?카테고리 없음 2024. 3. 5. 17:09
[TS] enum과 object의 차이가 무엇인가요? 꼭 enum을 사용하면 안되나요? 아래 코드에 이런 코드리뷰가 달렸다. "support view 도 enum class로 관리할 수 있다면 더 좋을 것 같습니다." import styled from '@emotion/styled'; export const Controller = styled.button` border: none; z-index: 1; cursor: pointer; transition: background-color 0.3s ease-in-out; background-color: ${({ theme }) => theme.gray[0]}; `; export const PrevController = styled(Controller)` mar..