Skip to content

Commit

Permalink
src/
Browse files Browse the repository at this point in the history
  • Loading branch information
tushgaurav committed Nov 13, 2024
1 parent f42b836 commit e39241a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/content/learn/responding-to-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ React आपको अपने JSX में *event handler* डालने

</YouWillLearn>

## Event handler डालना {/*adding-event-handlers*/}
## Event handler ऐड करना {/*adding-event-handlers*/}

Event handler जोड़ने के लिए, पहले एक फंक्शन को परिभाषित करें और फिर उसे props के रूप में पास करें उपयुक्त JSX टैग में। उदाहरण के लिए, यहाँ एक बटन है जो अभी कुछ नहीं करता है:
Event handler ऐड करने के लिए, पहले एक फंक्शन को परिभाषित करें और फिर उसे props के रूप में पास करें उपयुक्त JSX टैग में। उदाहरण के लिए, यहाँ एक बटन है जो अभी कुछ नहीं करता है:

<Sandpack>

Expand All @@ -34,9 +34,9 @@ export default function Button() {
</Sandpack>
आप उपयोगकर्ता द्वारा क्लिक करने पर संदेश दिखाने के लिए निम्न तीन चरणों का पालन कर सकते हैं:
आप यूजर द्वारा क्लिक करने पर संदेश दिखाने के लिए निम्न तीन चरणों का पालन कर सकते हैं:
1. अपने `Button` कौम्पोनॅन्ट के *अंदर* `handleClick` नाम का एक फंक्शन घोषित करें।
1. अपने `Button` कौम्पोनॅन्ट के *अंदर* `handleClick` नाम का एक फंक्शन डिक्लेअर करें।
2. उस फंक्शन के अंदर लॉजिक को लागू करें (संदेश दिखाने के लिए `alert` का उपयोग करें)।
3. `<button>` JSX में `onClick={handleClick}` जोड़ें।
Expand Down

0 comments on commit e39241a

Please sign in to comment.