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.js

10 lines
No EOL
132 B
JavaScript

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