Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- tanstackquery
- JavaSpring
- 오블완
- test
- 티스토리챌린지
- backend
- hook
- Redux
- 웹애플리케이션서버
- RTK
- Spring
- go
- java
- JPA
- react-hook-form
- component
- css
- storybook
- Gin
- satisfiles
- javascript
- typescript
- frontend
- ReactHooks
- Chakra
- golang
- designpatterns
- React
- springboot
Archives
- Today
- Total
목록2024/11/14 (1)
bkdragon's log
children 을 함수해서 동적으로 스타일을 지정하기
이전에 작성한 글 중에 '합성 컴포넌트 패턴과 React Children API 를 활용한 컴포넌트 설계' 라는 글이 있다.그 글에서 Tab.Item 을 변경해보자.const Item: FC = ({ children, index }) => { const { activeTab, setActiveTab } = useContext(TabContext); if (index === undefined) { throw new Error("index is required"); } return ( setActiveTab(index)}> {children} );};이전 글에선 원래 이렇게 내부에서 스타일을 지정하는데 children을 ..
React
2024. 11. 14. 22:18