JS 파일 코딩
public 디렉토리
index.html 이 있는 곳 index.html의 아래 태그에 지금 부터 작업 할 파일이 위치 함
...
<div id="root"></div>
...
src 디렉토리
index.js 파일이 핵심
index.js 파일의 아래 스크립트는 index.html의 <div id="root">
에 매핑
...
document.getElementById('root')
...
아래 스크립트를 통해 src/App.js 파일은 index.js에 포함 됨
...
import App from './App';
...
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
CSS 파일 코딩
App.js에 아래 스크립트를 통해 App.css가 포함 됨
...
import './App.css';
...
댓글남기기