playwright/tests/components/ct-svelte/src/main.js

10 lines
137 B
JavaScript
Raw Normal View History

2022-03-12 00:46:11 +01:00
import App from './App.svelte';
const app = new App({
target: document.body,
props: {
name: 'world'
}
});
export default app;