ollama/desktop/src/renderer.tsx

8 lines
195 B
TypeScript
Raw Normal View History

2023-06-23 15:04:38 -04:00
import App from './app'
import './app.css'
import { createRoot } from 'react-dom/client'
const container = document.getElementById('app')
const root = createRoot(container)
root.render(<App />)