ollama/app/src/renderer.tsx
2023-07-02 17:26:55 -04:00

7 lines
195 B
TypeScript

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 />)