An open API service indexing awesome lists of open source software.

https://github.com/devrabiul/b12a7-customer-support-zone

B12A7-Customer-Support-Zone
https://github.com/devrabiul/b12a7-customer-support-zone

Last synced: 9 months ago
JSON representation

B12A7-Customer-Support-Zone

Awesome Lists containing this project

README

          

#### What is JSX, and why is it used?
JSX is like HTML inside JavaScript.

#### What is the difference between State and Props?
State: Component owns data and can change.
Props: Data passed from a parent to a child component.

#### What is the useState hook, and how does it work?
useState lets you create state in a functional component.
const [count, setCount] = useState(0);

#### How can you share state between components in React?
The state in the parent and give it to children using props.

#### How is event handling done in React?
Click Me