목록2024/05/15 (1)
juni
State, Layout Component
// children : Layout 컴포넌트를 만들 때 주로 사용// layout 컴포넌트는 자식 컴포넌트를 가지는 형태// const User = (props) => {// console.log("props=>", props);// return user {props.children};// };// function Layout(props) {// const children = props.children;// return (// // header// {children}// footer// // );// }const App = () => { // return hi; // return ( // // App // //..
CS
2024. 5. 15. 23:24