├── src
├── react-app-env.d.ts
├── App
│ ├── TeamsAuth
│ │ └── TeamsAuth.tsx
│ ├── EventView
│ │ ├── EventDetailsView
│ │ │ ├── EventDetailsView.css
│ │ │ └── EventDetailsView.tsx
│ │ ├── BreakoutView
│ │ │ ├── BreakoutView.css
│ │ │ ├── BreakoutsCreatorView
│ │ │ │ ├── BreakoutsCreatorView.css
│ │ │ │ └── BreakoutsCreatorView.tsx
│ │ │ └── BreakoutView.tsx
│ │ └── EventView.tsx
│ ├── TeamsTabConfig
│ │ └── TabConfig.tsx
│ ├── AgendaView
│ │ ├── AgendaView.css
│ │ └── AgendaView.tsx
│ ├── App.css
│ └── App.tsx
├── utils
│ ├── graph.ts
│ ├── helpers.ts
│ ├── types.ts
│ ├── date.ts
│ ├── graph.events.ts
│ ├── graph.onlineMeetings.ts
│ └── graph.teams.ts
├── index.tsx
├── images
│ ├── move.svg
│ ├── logo.svg
│ └── tandem-bicycle.svg
└── serviceWorker.ts
├── public
├── robots.txt
├── favicon.ico
├── logo192.png
├── logo512.png
├── manifest.json
├── service-worker.js
├── web.config
├── vendor
│ └── custom-elements-es5-adapter.js
└── index.html
├── .publish
├── color.png
├── outline.png
├── Development.zip
├── Development.env
└── manifest.json
├── .vscode
└── settings.json
├── .gitignore
├── CODE_OF_CONDUCT.md
├── tsconfig.json
├── LICENSE
├── package.json
├── SECURITY.md
└── README.md
/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///