Files
BlogSolidjs/src/index.tsx
2025-12-04 23:02:10 +08:00

9 lines
185 B
TypeScript

/* @refresh reload */
import { render } from 'solid-js/web'
import './index.css'
import App from './App.tsx'
const root = document.getElementById('root')
render(() => <App />, root!)