mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import './index.css'
|
|
import App from './App.tsx'
|
|
import { Toaster } from './components/ui/sonner.tsx'
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
<Toaster />
|
|
</StrictMode>,
|
|
)
|