Backticks

Signed-off-by: Tim Hansen <timbonicus@gmail.com>
This commit is contained in:
Tim Hansen
2021-03-26 11:22:38 -06:00
parent f07848c770
commit f5f61e659e
6 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -45,8 +45,8 @@ The Auth0 provider is a structure with three configuration keys:
## Adding the provider to the Backstage frontend
To add the provider to the frontend, add the auth0AuthApi reference and
SignInPage component to `createApp` in `packages/app/src/App.tsx`:
To add the provider to the frontend, add the `auth0AuthApi` reference and
`SignInPage` component to `createApp` in `packages/app/src/App.tsx`:
```diff
+ import { auth0AuthApiRef, SignInConfig, SignInPage } from '@backstage/core';
+2 -2
View File
@@ -48,8 +48,8 @@ The GitHub provider is a structure with three configuration keys:
## Adding the provider to the Backstage frontend
To add the provider to the frontend, add the githubAuthApi reference and
SignInPage component to `createApp` in `packages/app/src/App.tsx`:
To add the provider to the frontend, add the `githubAuthApi` reference and
`SignInPage` component to `createApp` in `packages/app/src/App.tsx`:
```diff
+ import { githubAuthApiRef, SignInConfig, SignInPage } from '@backstage/core';
+2 -2
View File
@@ -47,8 +47,8 @@ The GitLab provider is a structure with three configuration keys:
## Adding the provider to the Backstage frontend
To add the provider to the frontend, add the gitlabAuthApi reference and
SignInPage component to `createApp` in `packages/app/src/App.tsx`:
To add the provider to the frontend, add the `gitlabAuthApi` reference and
`SignInPage` component to `createApp` in `packages/app/src/App.tsx`:
```diff
+ import { gitlabAuthApiRef, SignInConfig, SignInPage } from '@backstage/core';
+2 -2
View File
@@ -52,8 +52,8 @@ The Google provider is a structure with two configuration keys:
## Adding the provider to the Backstage frontend
To add the provider to the frontend, add the googleAuthApi reference and
SignInPage component to `createApp` in `packages/app/src/App.tsx`:
To add the provider to the frontend, add the `googleAuthApi` reference and
`SignInPage` component to `createApp` in `packages/app/src/App.tsx`:
```diff
+ import { googleAuthApiRef, SignInConfig, SignInPage } from '@backstage/core';
+2 -2
View File
@@ -48,8 +48,8 @@ The Microsoft provider is a structure with three configuration keys:
## Adding the provider to the Backstage frontend
To add the provider to the frontend, add the microsoftAuthApi reference and
SignInPage component to `createApp` in `packages/app/src/App.tsx`:
To add the provider to the frontend, add the `microsoftAuthApi` reference and
`SignInPage` component to `createApp` in `packages/app/src/App.tsx`:
```diff
+ import { microsoftAuthApiRef, SignInConfig, SignInPage } from '@backstage/core';
+2 -2
View File
@@ -61,8 +61,8 @@ The values referenced are found on the Application page on your Okta site.
## Adding the provider to the Backstage frontend
To add the provider to the frontend, add the oktaAuthApi reference and
SignInPage component to `createApp` in `packages/app/src/App.tsx`:
To add the provider to the frontend, add the `oktaAuthApi` reference and
`SignInPage` component to `createApp` in `packages/app/src/App.tsx`:
```diff
+ import { oktaAuthApiRef, SignInConfig, SignInPage } from '@backstage/core';