This keyword is used to declare a variable that can change later.
What is let?
This command is used to start a new React project in the folder "react-webpack-d1" using the codex react npm package.
What is npx react-webpack-codex react-webpack-d1
This tool takes your JavaScript files and bundles them into one file for the browser.
What is Webpack?
Babel helps you write this kind of JavaScript.
What is modern JavaScript?
This language is used to create the structure of a web page.
What is HTML?
This type of value goes inside quotation marks in JavaScript.
What is a string?
This special hook lets you create a variable that changes and makes the page re-render when updated.
What is useState?
This file tells Webpack how to build your project. It has to be updated at the beginning of the project.
What is webpack.config.js?
Babel changes modern JavaScript into code that works in all ____.
What are browsers?
This language is used to style how a web page looks.
What is CSS?
This symbol is used to compare two values in an if statement for strict equality (datatype and value).
What is ===?
This type of function returns some JSX and is used to display parts of the page.
What is a React component?
This command runs Webpack and builds your project.
What "npm run build".
Babel works with this tool to help build your project.
What is Webpack?
This HTML tag makes text bold.
What is <strong> or <b>
This loop lets you run the same code a certain number of times.
What is a for loop?
In React, this is what you return from a component to show something on the screen.
What is JSX?
This folder is where Webpack usually puts the bundled files.
What is the dist folder?
This is the name of the tool Babel uses to help Webpack.
What is babel-loader?
In CSS, this symbol is used to select a class.
What is a period (.)?
This lets you write a group of steps once and run them anytime by using its name.
What is a function?
React apps are made by putting together lots of small components. This is the name for the main or top-level component that holds them all.
What is App or App.jsx?
This part of webpack.config.js tells Webpack what file to use first.
What is entry?
This is the name of the loader Babel uses with Webpack.
What is babel-loader?
This CSS property changes the background color of a page.
What is background-color?