You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/spfx/build-for-teams-me-experience.md
+115-7Lines changed: 115 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -83,16 +83,79 @@ In this approach, you would start by putting all web parts that you want to expo
83
83
84
84

85
85
86
-
Next, you'd update the Teams manifest, referencing the different web parts as tabs to the personal app.
87
-
88
-

86
+
Next, you'd update the Teams manifest, referencing the different web parts as tabs to the personal app, for example:
> Ensure that the web parts that you want to expose in the personal Teams app, have in their manifest, in the `supportedHosts` property the `TeamsPersonalApp` value specified.
92
135
93
136
To let users configure web parts exposed on the different tabs, you could build a separate Settings web part and expose it as a tab.
94
137
95
-

### Advantages of building multi-tab personal Teams apps
98
161
@@ -152,9 +215,54 @@ To put it in practice, let's say you have a project with the following web parts
152
215
153
216

154
217
155
-
To simplify the user-experience, you can build a new web part and have its root React component reference React components of each of these web parts.
156
-
157
-

218
+
To simplify the user-experience, you can build a new web part and have its root React component reference React components of each of these web parts, for example:
Such container web part allows you to reuse your existing code without duplicating it. Additionally, you will improve the user experience by combining related information and decrease the number of different tabs exposed.
0 commit comments