mirror of
https://github.com/dbgate/dbgate
synced 2024-11-16 00:37:14 +00:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import App from './App.svelte';
|
|
import './utility/connectionsPinger';
|
|
import './utility/changeCurrentDbByTab';
|
|
import './commands/stdCommands';
|
|
|
|
const app = new App({
|
|
target: document.body,
|
|
props: {},
|
|
});
|
|
|
|
export default app;
|