feat: publish HoloLake model-native living system source
This commit is contained in:
parent
6ad10edde1
commit
c395dd3a99
2467 changed files with 615073 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
import { StrictMode } from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import { TooltipProvider } from '@/components/ui/tooltip'
|
||||
import './index.css'
|
||||
import TeamFoundationRoot from './TeamFoundationRoot'
|
||||
import { applyStoredThemeMode } from './lib/themeMode'
|
||||
|
||||
applyStoredThemeMode(document, window.localStorage)
|
||||
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
<StrictMode>
|
||||
<TooltipProvider>
|
||||
<TeamFoundationRoot />
|
||||
</TooltipProvider>
|
||||
</StrictMode>,
|
||||
)
|
||||
Loading…
Reference in a new issue