Skip to content

Commit 6a96994

Browse files
committed
docs(react): remove first header
1 parent b3489b4 commit 6a96994

16 files changed

+0
-32
lines changed

docs/react/your-first-app.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Build Your First App
1111
/>
1212
</head>
1313

14-
# Your First Ionic App: React
15-
1614
The great thing about Ionic is that with one codebase, you can build for any platform using just HTML, CSS, and JavaScript. Follow along as we learn the fundamentals of Ionic app development by creating a realistic app step by step.
1715

1816
Here’s the finished app running on all 3 platforms:

docs/react/your-first-app/2-taking-photos.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Taking Photos
1111
/>
1212
</head>
1313

14-
# Taking Photos with the Camera
15-
1614
Now for the fun part - adding the ability to take photos with the device’s camera using the Capacitor [Camera API](../../native/camera.md). We’ll begin with building it for the web, then make some small tweaks to make it work on mobile (iOS and Android).
1715

1816
## Photo Gallery Hook

docs/react/your-first-app/3-saving-photos.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Saving Photos
1111
/>
1212
</head>
1313

14-
# Saving Photos to the Filesystem
15-
1614
We’re now able to take multiple photos and display them in a photo gallery on the second tab of our app. These photos, however, are not currently being stored permanently, so when the app is closed, they will be deleted.
1715

1816
## Filesystem API

docs/react/your-first-app/4-loading-photos.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Loading Photos
1111
/>
1212
</head>
1313

14-
# Loading Photos from the Filesystem
15-
1614
We’ve implemented photo taking and saving to the filesystem. There’s one last piece of functionality missing: the photos are stored in the filesystem, but we need a way to save pointers to each file so that they can be displayed again in the photo gallery.
1715

1816
Fortunately, this is easy: we’ll leverage the Capacitor [Preferences API](../../native/preferences.md) to store our array of Photos in a key-value store.

docs/react/your-first-app/5-adding-mobile.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Adding Mobile
1111
/>
1212
</head>
1313

14-
# Adding Mobile
15-
1614
Our photo gallery app won’t be complete until it runs on iOS, Android, and the web - all using one codebase. All it takes is some small logic changes to support mobile platforms, installing some native tooling, then running the app on a device. Let’s go!
1715

1816
## Import Platform API

docs/react/your-first-app/6-deploying-mobile.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Deploying Mobile
1111
/>
1212
</head>
1313

14-
# Deploying to iOS and Android
15-
1614
Since we added Capacitor to our project when it was first created, there’s only a handful of steps remaining until the Photo Gallery app is on our device!
1715

1816
:::note

docs/react/your-first-app/7-live-reload.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Live Reload
1111
/>
1212
</head>
1313

14-
# Rapid App Development with Live Reload
15-
1614
So far, we’ve seen how easy it is to develop a cross-platform app that works everywhere. The development experience is pretty quick, but what if I told you there was a way to go faster?
1715

1816
We can use the Ionic CLI’s [Live Reload functionality](../../cli/livereload.md) to boost our productivity when building Ionic apps. When active, Live Reload will reload the browser and/or WebView when changes in the app are detected.

docs/react/your-first-app/8-distribute.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Distribute
1111
/>
1212
</head>
1313

14-
# Build and Deploy your App
15-
1614
Now that you have built your first app, you are going to want to get it distributed so everyone can start using it. The mechanics of building and deploying your application can be quite cumbersome. That is where [Appflow](https://ionic.io/docs/appflow/) comes into play. Appflow allows you to effectively generate web and native builds, push out live app updates, publish your app to the app stores, and automate the whole process. The entire Quickstart guide can be found [here](https://ionic.io/docs/appflow/quickstart).
1715

1816
Below we will run through an overview of the steps.

versioned_docs/version-v7/react/your-first-app.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Build Your First App
1111
/>
1212
</head>
1313

14-
# Your First Ionic App: React
15-
1614
The great thing about Ionic is that with one codebase, you can build for any platform using just HTML, CSS, and JavaScript. Follow along as we learn the fundamentals of Ionic app development by creating a realistic app step by step.
1715

1816
Here’s the finished app running on all 3 platforms:

versioned_docs/version-v7/react/your-first-app/2-taking-photos.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ sidebar_label: Taking Photos
1111
/>
1212
</head>
1313

14-
# Taking Photos with the Camera
15-
1614
Now for the fun part - adding the ability to take photos with the device’s camera using the Capacitor [Camera API](../../native/camera.md). We’ll begin with building it for the web, then make some small tweaks to make it work on mobile (iOS and Android).
1715

1816
## Photo Gallery Hook

0 commit comments

Comments
 (0)