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

12 lines
167 B
JavaScript

import App from './App.svelte';
import './assets/index.css';
const app = new App({
target: document.body,
props: {
name: 'world'
}
});
export default app;