How to create project structure of yo office SSO with react platform

Viewed 90

I want to create office addin using yo office generator that allow me to configure SSO features with react project

I have created my addin using

yo office

enter image description here

I refer official docs from Microsoft here

That library will generate code but in javascript or typescript

If I create my addin with Javascript language with SSO feature enabled then how should I used react and redux component in same workspace?

1 Answers

You need to install the required for react UI dependencies using the npm install command. The office-generator provides a skeleton for the react-enabled add-in without SSO, so you may try to generate one to observe what dependencies are required for that and then combine everything into a single add-in project. See Use Fluent UI React in Office Add-ins for more information.

Related