목록2024/05/14 (1)
juni
Component , JSX , props
// 조상 , 부모 , 자식 컴포넌트function App() { return ( div> h1>부모-자식 관계 테스트h1> GrandFather /> div> );}export default App;function GrandFather() { return ( div> p>할아버지p> Mother /> div> );}function Mother() { return ( div> p>엄마p> Child /> div> );}function Child() { return ( div> p>자식p> div> );} rafce 스니펫 ->import React from 'react'const App..
CS
2024. 5. 14. 23:26