8 Quizes | 10 Minutes
building User Interface
React is mainly used for _______ (if needed, google it)
className = “myClass”
How do you declare a class called “myClass” in react?
map
Which method will you use in react to display components for each object in an array?
const [name, setName] = useState(“JingaLala”);
How will create a state with a default value “JingaLala”?
class is a reserved keyword in javascript
Why can’t we declare a class with the “class” keyword in React?
Javascript XML
What is JSX?
Uppercase
When creating a component in React, the first letter of that function name should be in ____
function Nayika() { return <h3> Mousumi </h3> }
What is the correct way of creating a component in react?