setup solidjs

This commit is contained in:
2022-08-12 19:35:39 -06:00
parent 4a7bfc8205
commit 62a0a3e437
13 changed files with 1154 additions and 2 deletions

7
src/index.tsx Normal file
View File

@ -0,0 +1,7 @@
/* @refresh reload */
import { render } from 'solid-js/web';
import './index.css';
import App from './App';
render(() => <App />, document.getElementById('root') as HTMLElement);