Skip to content

Commit 91e9851

Browse files
committed
quickstart-line-180
1 parent 5d96746 commit 91e9851

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

src/components/Layout/TopNav/TopNav.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,17 +360,17 @@ export default function TopNav({
360360
<Suspense fallback={null}>
361361
<div className="pl-3 xs:pl-5 xs:gap-0.5 xs:text-base overflow-x-auto flex flex-row lg:hidden text-base font-bold text-secondary dark:text-secondary-dark">
362362
<NavItem isActive={section === 'learn'} url="/learn">
363-
Learn
363+
Naučite
364364
</NavItem>
365365
<NavItem
366366
isActive={section === 'reference'}
367367
url="/reference/react">
368-
Reference
368+
Referenca
369369
</NavItem>
370370
<NavItem
371371
isActive={section === 'community'}
372372
url="/community">
373-
Community
373+
Zajednica
374374
</NavItem>
375375
<NavItem isActive={section === 'blog'} url="/blog">
376376
Blog

src/content/learn/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export default function Profile() {
154154
<img
155155
className="avatar"
156156
src={user.imageUrl}
157-
alt={'Photo of ' + user.name}
157+
alt={'Fotografija od ' + user.name}
158158
style={{
159159
width: user.imageSize,
160160
height: user.imageSize
@@ -177,7 +177,7 @@ export default function Profile() {
177177
178178
</Sandpack>
179179
180-
In the above example, `style={{}}` is not a special syntax, but a regular `{}` object inside the `style={ }` JSX curly braces. You can use the `style` attribute when your styles depend on JavaScript variables.
180+
U gore navedenom primeru, `style={{}}` nije posebna sintaksa, već običan `{}` objekat unutar `style={ }` JSX kovrdžavih zagrada. Možete koristiti `style` atribut kada se vaši style-ovi oslanjaju na JavaScript varijable.
181181
182182
## Conditional rendering {/*conditional-rendering*/}
183183

src/sidebarLearn.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
11
{
2-
"title": "Learn React",
2+
"title": "Naučite React",
33
"path": "/learn",
44
"routes": [
55
{
66
"hasSectionHeader": true,
7-
"sectionHeader": "GET STARTED"
7+
"sectionHeader": "ZAPOČNITE"
88
},
99
{
10-
"title": "Quick Start",
10+
"title": "Brzi Uvod",
1111
"path": "/learn",
1212
"routes": [
1313
{
14-
"title": "Tutorial: Tic-Tac-Toe",
14+
"title": "Tutorijal: Iks-Oks",
1515
"path": "/learn/tutorial-tic-tac-toe"
1616
},
1717
{
18-
"title": "Thinking in React",
18+
"title": "Razmišljanje na React način",
1919
"path": "/learn/thinking-in-react"
2020
}
2121
]
2222
},
2323
{
24-
"title": "Installation",
24+
"title": "Instalacija",
2525
"path": "/learn/installation",
2626
"routes": [
2727
{
28-
"title": "Start a New React Project",
28+
"title": "Započnite novi React projekat",
2929
"path": "/learn/start-a-new-react-project"
3030
},
3131
{
32-
"title": "Add React to an Existing Project",
32+
"title": "Dodajte React u postojeći projekat",
3333
"path": "/learn/add-react-to-an-existing-project"
3434
},
3535
{
36-
"title": "Editor Setup",
36+
"title": "Podešavanje Editora",
3737
"path": "/learn/editor-setup"
3838
},
3939
{
40-
"title": "React Developer Tools",
40+
"title": "React Developer Alati",
4141
"path": "/learn/react-developer-tools"
4242
}
4343
]
4444
},
4545
{
4646
"hasSectionHeader": true,
47-
"sectionHeader": "LEARN REACT"
47+
"sectionHeader": "NAUČITE REACT"
4848
},
4949
{
50-
"title": "Describing the UI",
50+
"title": "Opisivanje UI",
5151
"tags": [],
5252
"path": "/learn/describing-the-ui",
5353
"routes": [
5454
{
55-
"title": "Your First Component",
55+
"title": "Vaša Prva Komponenta",
5656
"path": "/learn/your-first-component"
5757
},
5858
{

0 commit comments

Comments
 (0)