React is mainly used for _______ (if needed, google it)
building User Interfacebuilding Databasebuilding User Data Flowbuilding ShopHow do you declare a class called “myClass” in react?
class = “myClass”Class = “myClass”className = “myClass”I don’t knowWhich method will you use in react to display components for each object in an array?
filterfindmapforHow will create a state with a default value “JingaLala”?
const { name, setName } = useState(“JingaLala”);[name, setName] = UseState(“JingaLala”);const ( name, setName ) = useState(“JingaLala”);const [name, setName] = useState(“JingaLala”);Why can’t we declare a class with the “class” keyword in React?
We should use class instead of classNameclass is a reserved keyword in javascriptWe can use any name What is JSX?
Javascript Html Javascript XMLReact XMLJavascript HttpWhen creating a component in React, the first letter of that function name should be in ____
UppercaseLowercaseI can use BothWhat is the correct way of creating a component in react?
function nayika() { return <h3>Mousumi </h3>}function Nokiya() [ return <h3> Mousumi <h3> ]function Nayika() ( return <h3> Mousumi </h3> )function Nayika() { return <h3> Mousumi </h3> }