ollama/macapp/src/renderer.tsx
2024-02-15 05:56:45 +00: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 />)