Skip to content

Commit 67a0dac

Browse files
committed
bring-table-into-tabs
1 parent e21e9b1 commit 67a0dac

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

articles/active-directory/develop/tutorial-single-page-app-react-prepare-spa.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: active-directory
99
ms.subservice: develop
1010
ms.author: owenrichards
1111
ms.topic: tutorial
12-
ms.date: 02/27/2023
12+
ms.date: 09/25/2023
1313
#Customer intent: As a React developer, I want to know how to create a new React project in an IDE and add authentication.
1414
---
1515

@@ -45,6 +45,25 @@ Use the following tabs to create a React project within the IDE.
4545
1. Choose a location for the project or accept the default option, and then select **Next**.
4646
1. In **Additional information**, select **Create**.
4747
1. From the toolbar, select **Start Without Debugging** to launch the application. A web browser will open with the address `http://localhost:3000/` by default. The browser remains open and re-renders for every saved change.
48+
1. Create additional folders and files to achieve the following folder structure:
49+
50+
```console
51+
├─── public
52+
│ └─── index.html
53+
└───src
54+
├─── components
55+
│ └─── PageLayout.jsx
56+
│ └─── ProfileData.jsx
57+
│ └─── SignInButton.jsx
58+
│ └─── SignOutButton.jsx
59+
└── App.css
60+
└── App.jsx
61+
└── authConfig.js
62+
└── graph.js
63+
└── index.css
64+
└── index.js
65+
```
66+
4867

4968
### [Visual Studio Code](#tab/visual-studio-code)
5069

@@ -57,7 +76,6 @@ Use the following tabs to create a React project within the IDE.
5776
cd reactspalocal
5877
npm start
5978
```
60-
---
6179

6280
1. Create additional folders and files to achieve the following folder structure:
6381

@@ -78,6 +96,10 @@ Use the following tabs to create a React project within the IDE.
7896
└── index.js
7997
```
8098

99+
---
100+
101+
102+
81103

82104
## Install identity and bootstrap packages
83105

0 commit comments

Comments
 (0)