This repository has been archived on 2021-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
graf-uloh/frontend/src/main.ts
2020-09-27 18:09:39 +00:00

10 lines
159 B
TypeScript

import App from './App.svelte';
const app = new App({
target: document.getElementById("svelte-root")!,
props: {
name: 'world'
}
});
export default app;