mirror of
https://github.com/aljazceru/pubky-explorer.git
synced 2025-12-17 05:54:27 +01:00
12 lines
207 B
TypeScript
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!)
|