Files
rabbit/src/index.tsx
2023-12-21 00:49:59 +09:00

8 lines
181 B
TypeScript

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