-
Notifications
You must be signed in to change notification settings - Fork 131
React "Installation" page translated into hindi. #243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,25 +1,25 @@ | ||||||
--- | ||||||
title: Installation | ||||||
title: इंस्टॉलेशन | ||||||
--- | ||||||
|
||||||
<Intro> | ||||||
|
||||||
React has been designed from the start for gradual adoption. You can use as little or as much React as you need. Whether you want to get a taste of React, add some interactivity to an HTML page, or start a complex React-powered app, this section will help you get started. | ||||||
React को शुरु से ही धीरे-धीरे अपनाने के लिए डिज़ाइन किया गया है। तुम जितना चाहो, उतना React का यूज़ कर सकते हो। चाहे आप React की एक झलक पाना चाहते हो, HTML पेज में कुछ इंटरएक्टिविटी जोड़ना चाहते हो, या एक काम्प्लेक्स React-पॉवर्ड ऐप शुरू करना चाहते हो, यह सेक्शन आपकी शुरुआत में मदद करेगा। | ||||||
|
||||||
</Intro> | ||||||
|
||||||
<YouWillLearn isChapter={true}> | ||||||
|
||||||
* [How to start a new React project](/learn/start-a-new-react-project) | ||||||
* [How to add React to an existing project](/learn/add-react-to-an-existing-project) | ||||||
* [How to set up your editor](/learn/editor-setup) | ||||||
* [How to install React Developer Tools](/learn/react-developer-tools) | ||||||
* [एक नया React प्रोजेक्ट कैसे शुरू करें](/learn/start-a-new-react-project) | ||||||
* [एक मौजूदा प्रोजेक्ट में React कैसे ऐड करें](/learn/add-react-to-an-existing-project) | ||||||
* [अपने एडिटर को कैसे सेटअप करें](/learn/editor-setup) | ||||||
* [React डेवलपर टूल्स को कैसे इनस्टॉल करें](/learn/react-developer-tools) | ||||||
|
||||||
</YouWillLearn> | ||||||
|
||||||
## Try React {/*try-react*/} | ||||||
## रिएक्ट को आजमाएं {/*try-react*/} | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
You don't need to install anything to play with React. Try editing this sandbox! | ||||||
React के साथ खेलने के लिए आपको कुछ भी इंस्टॉल करने की आवश्यकता नहीं है। इस सैंडबॉक्स को एडिट करने की कोशिश करें! | ||||||
|
||||||
<Sandpack> | ||||||
|
||||||
|
@@ -35,23 +35,22 @@ export default function App() { | |||||
|
||||||
</Sandpack> | ||||||
|
||||||
You can edit it directly or open it in a new tab by pressing the "Fork" button in the upper right corner. | ||||||
आप इसे डायरेक्ट एडिट कर सकते हैं या उपरी राईट कोर्नर में 'Fork' बटन दबाकर एक नए टैब में ओपन कर सकते हैं। | ||||||
|
||||||
Most pages in the React documentation contain sandboxes like this. Outside of the React documentation, there are many online sandboxes that support React: for example, [CodeSandbox](https://codesandbox.io/s/new), [StackBlitz](https://stackblitz.com/fork/react), or [CodePen.](https://codepen.io/pen?&editors=0010&layout=left&prefill_data_id=3f4569d1-1b11-4bce-bd46-89090eed5ddb) | ||||||
React डॉक्युमेंटेशन में बहुत से पेज में इस तरह के सैंडबॉक्स शामिल हैं। React डॉक्युमेंटेशन के बाहर, बहुत सारे ऑनलाइन सैंडबॉक्स हैं जो React को सपोर्ट करते हैं: उदाहरण के लिए, [CodeSandbox](https://codesandbox.io/s/new), [StackBlitz](https://stackblitz.com/fork/react) , या [CodePen.](https://codepen.io/pen?&editors=0010&layout=left&prefill_data_id=3f4569d1-1b11-4bce-bd46-89090eed5ddb) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
### Try React locally {/*try-react-locally*/} | ||||||
### React लोकाली ट्राई करें {/*try-react-locally*/} | ||||||
|
||||||
To try React locally on your computer, [download this HTML page.](https://gist.githubusercontent.com/gaearon/0275b1e1518599bbeafcde4722e79ed1/raw/db72dcbf3384ee1708c4a07d3be79860db04bff0/example.html) Open it in your editor and in your browser! | ||||||
अपने कंप्यूटर पर React लोकाली ट्राई करने के लिए, [इस HTML पेज को डाउनलोड करें।](https://gist.githubusercontent.com/gaearon/0275b1e1518599bbeafcde4722e79ed1/raw/db72dcbf3384ee1708c4a07d3be79860db04bff0/example.html) इसे अपने एडिटर और अपने ब्राउज़र में ओपन करें! | ||||||
|
||||||
## Start a new React project {/*start-a-new-react-project*/} | ||||||
## एक नया प्रोजेक्ट स्टार्ट करें {/*start-a-new-react-project*/} | ||||||
|
||||||
If you want to build an app or a website fully with React, [start a new React project.](/learn/start-a-new-react-project) | ||||||
अगर आप एक एप्लिकेशन या वेबसाइट को पूरी तरह से React के साथ बनाना चाहते हैं तो, [एक नया React प्रोजेक्ट स्टार्ट करें।](/learn/start-a-new-react-project) | ||||||
|
||||||
## Add React to an existing project {/*add-react-to-an-existing-project*/} | ||||||
## React को एक मौजूदा प्रोजेक्ट में ऐड करें {/*add-react-to-an-existing-project*/} | ||||||
|
||||||
If want to try using React in your existing app or a website, [add React to an existing project.](/learn/add-react-to-an-existing-project) | ||||||
अगर आप अपने मौजूदा ऐप या वेबसाइट में React का यूज़ करना चाहते हैं तो, [React को एक मौजूदा प्रोजेक्ट में ऐड करें।](/learn/add-react-to-an-existing-project) | ||||||
|
||||||
## Next steps {/*next-steps*/} | ||||||
|
||||||
Head to the [Quick Start](/learn) guide for a tour of the most important React concepts you will encounter every day. | ||||||
## अगले स्टेप्स {/*next-steps*/} | ||||||
|
||||||
सबसे इम्पोर्टेंट React कॉन्सेप्ट्स के टूर के लिए [क्विक स्टार्ट](/learn) गाइड पर जाएं, जिनका आप हर दिन सामना करेंगे। |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.