keet-streaming / src /index.tsx
ysdede's picture
feat(space): migrate Hugging Face Space to keet SolidJS app
b8cc2bf
/**
* Keet v2.0 - Entry Point
*
* Privacy-first, offline-capable real-time transcription.
*/
/* @refresh reload */
import { render } from 'solid-js/web';
import App from './App';
import './index.css';
const root = document.getElementById('root');
if (!root) {
throw new Error('Root element not found');
}
render(() => <App />, root);