설치 npm i create-react-app npx create-react-app [폴더] npm start 배포 npm build npx serve -s build 컴포넌트 Header, Nav, Article import './App.css'; function Header(){ return WEB } function Nav(){ return html css js } function Article(){ return Welcome Hello, WEB } function App() { return ( ); } export default App; props import './App.css'; function Header(props){ return {props.title} } function Nav(prop..