dbgate/packages/web/src/main.ts

13 lines
211 B
TypeScript
Raw Normal View History

2021-02-17 17:46:27 +00:00
import App from './App.svelte';
2021-02-20 20:35:24 +00:00
import './utility/connectionsPinger';
2021-02-25 17:05:44 +00:00
import './commands/stdCommands';
2021-02-17 17:46:27 +00:00
const app = new App({
2021-02-17 18:26:48 +00:00
target: document.body,
props: {
name: 'world',
},
2021-02-17 17:46:27 +00:00
});
2021-02-17 18:26:48 +00:00
export default app;