microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/close-pull-request

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Samples/Samples.Tab/Web/src/client.tsx

10lines · modecode

1import { StrictMode } from 'react';
2import { createRoot } from 'react-dom/client';
3
4import App from './App';
5
6createRoot(document.getElementById('root')!).render(
7 <StrictMode>
8 <App />
9 </StrictMode>
10);
11