1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
What is React?
React is a JavaScript library used for building user interfaces, particularly single-page applications where you can create reusable components.
What is a component in React?
A component is a reusable piece of code that is responsible for rendering part of the user interface. Components can be class-based or functional.
What are props in React?
Props, short for properties, are arguments passed into React components. They allow data to be passed from one component to another.
What is state in React?
State is an object that determines the behavior of a component. Changes to the state will trigger re-renders of the component.