Skip to content

Commit b3146c9

Browse files
JLRisheVesaJuvonen
authored andcommitted
Fix malformed ```ts section (SharePoint#896)
1 parent 020c94c commit b3146c9

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docs/spfx/extensions/get-started/using-page-placeholder-with-extensions.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,12 @@ In the following steps, you'll modify the Hello World Application Customizer to
4545

4646
Also add the following import statements after the `strings` import at the top of the file:
4747

48+
```ts
49+
import styles from './AppCustomizer.module.scss';
50+
import { escape } from '@microsoft/sp-lodash-subset';
51+
```
4852

49-
```ts
50-
import styles from './AppCustomizer.module.scss';
51-
import { escape } from '@microsoft/sp-lodash-subset';
52-
```
53-
54-
You use `escape` to escape Application Customizer properties. You'll create style definitions for the output in the following steps.
53+
You use `escape` to escape Application Customizer properties. You'll create style definitions for the output in the following steps.
5554

5655
3. Create a new file named **AppCustomizer.module.scss** under the **src\extensions\helloWorld** folder.
5756

0 commit comments

Comments
 (0)