Skip to content

Commit 4b23801

Browse files
authored
Merge pull request #116 from lxmarinkovic/fix23122024
fix
2 parents ca11c9f + f6f2e7e commit 4b23801

File tree

2 files changed

+6
-16
lines changed

2 files changed

+6
-16
lines changed

src/content/learn/index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@ title: Brzi Uvod
44

55
<Intro>
66

7-
<<<<<<< HEAD
87
Dobro došli u React dokumentaciju! Ova stranica pružiće vam uvod u 80% React koncepata koje ćete koristiti u svakodnevnom radu.
9-
=======
10-
Welcome to the React documentation! This page will give you an introduction to 80% of the React concepts that you will use on a daily basis.
11-
>>>>>>> 6ae99dddc3b503233291da96e8fd4b118ed6d682
128

139
</Intro>
1410

src/content/learn/react-developer-tools.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ Najlakši način da debagujete sajtove napravljene sa React-om je da instalirate
2222
* [Instalirajte za **Firefox**](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)
2323
* [Instalirajte za **Edge**](https://microsoftedge.microsoft.com/addons/detail/react-developer-tools/gpphkfbcpidddadnkolkpfckpihlkkil)
2424

25-
Sada, ako posetite sajt **napravljen sa React-om,** videćete _Components_ i _Profiler_ panele.
25+
Sada, ako posetite sajt **napravljen sa React-om,** videćete *Components* i *Profiler* panele.
2626

2727
![React Developer Tools ekstenzija](/images/docs/react-devtools-extension.png)
2828

2929
### Safari i drugi pretraživači {/*safari-and-other-browsers*/}
3030

3131
Za svaki pretraživač (na primer, Safari), instalirajte [`react-devtools`](https://www.npmjs.com/package/react-devtools) npm paket:
32+
3233
```bash
3334
# Yarn
3435
yarn global add react-devtools
@@ -38,11 +39,13 @@ npm install -g react-devtools
3839
```
3940

4041
Sledeće, otvorite developer tools iz terminala:
42+
4143
```bash
4244
react-devtools
4345
```
4446

4547
Onda konektujte vaš sajt dodavanjem sledećeg `<script>` taga na početak `<head>` taga vašeg sajta:
48+
4649
```html {3}
4750
<html>
4851
<head>
@@ -53,23 +56,18 @@ Reload-ujte vaš sajt u pretraživaču da bi ga videli u developer tools.
5356

5457
![React Developer Tools standalone](/images/docs/react-devtools-standalone.png)
5558

56-
<<<<<<< HEAD
5759
## Mobilni telefoni (React Native) {/*mobile-react-native*/}
60+
5861
React Developer Tools može se koristiti za inspekciju aplikacija napravljenih sa [React Native](https://reactnative.dev/).
5962

6063
Najlakši način da koristite React Developer Tools je da ga instalirate globalno:
64+
6165
```bash
6266
# Yarn
6367
yarn global add react-devtools
64-
=======
65-
## Mobile (React Native) {/*mobile-react-native*/}
66-
67-
To inspect apps built with [React Native](https://reactnative.dev/), you can use [React Native DevTools](https://reactnative.dev/docs/debugging/react-native-devtools), the built-in debugger that deeply integrates React Developer Tools. All features work identically to the browser extension, including native element highlighting and selection.
68-
>>>>>>> 3b02f828ff2a4f9d2846f077e442b8a405e2eb04
6968

7069
[Learn more about debugging in React Native.](https://reactnative.dev/docs/debugging)
7170

72-
<<<<<<< HEAD
7371
Zatim otvorite Developer Tools iz terminala:
7472
```bash
7573
react-devtools
@@ -80,7 +78,3 @@ Trebalo bi da se poveže sa bilo kojom lokalnom React Native aplikacijom koja je
8078
> Pokušajte da reload-ujete aplikaciju ako developer tools ne uspe da se poveže nakon nekoliko sekundi.
8179

8280
[Naučite više o debagovanju React Native.](https://reactnative.dev/docs/debugging)
83-
84-
=======
85-
> For versions of React Native earlier than 0.76, please use the standalone build of React DevTools by following the [Safari and other browsers](#safari-and-other-browsers) guide above.
86-
>>>>>>> 3b02f828ff2a4f9d2846f077e442b8a405e2eb04

0 commit comments

Comments
 (0)