Files
mermaid-live-editor/src/main.js
T
2019-11-13 05:20:09 -08:00

13 lines
152 B
JavaScript

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