const MyProps = (props) => {
return <div>{props.name}</div>
}
const App = () => {
return <MyProps name='react' />
}
const App = () => {
return <MyProps> 리액트 </MyProps>
}
const MyProps = (props) => {
return <div>children 값은 {props.children}</div>
}
출력 : children 값은 리액트
const MyProps = (props) => {
const { name, children } = props;
return (
<div>
이름은 {name},
children 값은 {children}
</div>
)
}
const MyProps = ({name, children}) => {
return (
<div>
이름은 {name},
children 값은 {children}
</div>
)
}