Skip to content

Commit e3410a2

Browse files
committed
docs(react): update file paths
1 parent 32b0976 commit e3410a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/react/your-first-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,13 @@ const Tab2: React.FC = () => {
165165
export default Tab2;
166166
```
167167

168-
`IonHeader` represents the top navigation and toolbar, with "Tab 2" as the title (there are two of them due to iOS [Collapsible Large Title](../api/title#collapsible-large-titles) support). Let’s rename both `IonTitle` elements to:
168+
`IonHeader` represents the top navigation and toolbar, with "Tab 2" as the title (there are two of them due to iOS [Collapsible Large Title](../api/title.md#collapsible-large-titles) support). Let’s rename both `IonTitle` elements to:
169169

170170
```tsx
171171
<IonTitle>Photo Gallery</IonTitle>
172172
```
173173

174-
We put the visual aspects of our app into `<IonContent>`. In this case, it’s where we’ll add a button that opens the device’s camera as well as displays the image captured by the camera. Start by adding a [floating action button](../api/fab) (FAB) to the bottom of the page and set the camera image as the icon.
174+
We put the visual aspects of our app into `<IonContent>`. In this case, it’s where we’ll add a button that opens the device’s camera as well as displays the image captured by the camera. Start by adding a [floating action button](../api/fab.md) (FAB) to the bottom of the page and set the camera image as the icon.
175175

176176
```tsx
177177
// CHANGE: Add the following import.

0 commit comments

Comments
 (0)