This commit is contained in:
amy 2024-06-23 01:11:44 +03:30
commit 96595e6e72
12 changed files with 1360 additions and 0 deletions

8
src/index.jsx Normal file
View file

@ -0,0 +1,8 @@
/* @refresh reload */
import { render } from 'solid-js/web'
import App from './App'
const root = document.getElementById('root')
render(() => <App />, root)