mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-18 06:24:25 +01:00
8 lines
181 B
TypeScript
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);
|