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
- Host: GitHub
- URL: https://github.com/devrabiul/b12a7-customer-support-zone
- Owner: devrabiul
- Created: 2025-09-24T19:14:09.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-24T19:35:51.000Z (9 months ago)
- Last Synced: 2025-09-24T21:27:33.696Z (9 months ago)
- Language: JavaScript
- Size: 48.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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