React 컴포넌트에 조건부로 props 추가 방법 (style, event handler)
props를 객체로 정의 하고 Spread operator(...)를 사용하여 컴포넌트에 전달할 수 있습니다. // can be rewritten as const props = { title: 'React', label: 'library' } 조건에 따라서 추가하거나 제거 하려면 삼항 연산자(a?b:c) 또는 if-else 문을 사용 예제1. //using ternary operator const App = () => { const [isShowDescription, setIsShowDescription] = useState(false); const customProps = { label: "Hello", size: 100 } return ( ); } export default App; 예제2. //us..
2021년 12월 29일