1. How to Get Help
pass
2. Join Our Community!
done
3. Course Resourse
pass
4. Let's Build an App!
์ด๋ป๊ฒ ๋ฆฌ์กํธ๋ฅผ ๋นจ๋ฆฌ ๋ฐฐ์ ์๊น๋ผ๋ ์ง๋ฌธ์ ๋ง์ด ๋ฐ์ต๋๋ค. ์ด ์ง๋ฌธ์ ๋ตํ ์ ์๋ ๋๋ต์ ๋ฑ ํ๊ฐ์ง์ ๋๋ค.
You have to write code and you have to work on projects
5. Critical Questions
1. What's React All about?
๋ฆฌ์กํธ๋ (1) HTML์ ๋ณด์ฌ์ฃผ๊ฑฐ๋ (2) ์ฌ์ฉ์๊ฐ ๋ฌด์ธ๊ฐ๋ฅผ ํ ๋, HTML์ด ๋ณํ๋ค.
6. A Few More Critical Questions
2. How does a React app start up?
1. All of your project's JS files are 'bundled' together into a single file, then placed onto a server
2. User makes a request to the server and gets an HTML file + the bundle
3. User's browser executes your code
3-1. Find the div with id of 'root in the DOM
3-2. Tell React to take control of that element
3-3. Tell React to getJSX from the App component, turn it into HTML, and show it in the root.
3. What were the 'useState' functions?
'useState' is a function that works with React's "state" system.
State is like a variable in React.
State is used to store data that changes over time.
Whenever state changes, React automatically updates content on the screen.
4. How did the text get translated to another language?
using goole translate API
7. Node Setup
pass
8. Creating a React Project
pass
9. What is Create React App?
index.js : First file that gets executed when our app runs
index.html : Skeleton(๋ผ๋) for the React app
package.json : Lists dependencies our app needs
package-lock.json : Lists dependencies our app needs
node-modules : Contains dependencies our app needs