playwright/tests/components/ct-solid/src/index.tsx
sand4rt 704ff5fda3
core(ct): align styling (#17573)
aligned the global styling of the ct test projects and added dark mode
2022-09-28 10:54:24 +02:00

7 lines
187 B
TypeScript

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