Files
pubky-explorer/src/index.tsx
2024-10-21 17:46:51 +03:00

12 lines
207 B
TypeScript

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