ghost-user-maker/src/main.ts

13 lines
164 B
TypeScript
Raw Normal View History

2022-08-05 00:17:26 -04:00
import App from './App.svelte';
const app = new App({
target: document.body,
props: {
name: '',
email: '',
slug: '',
bio: '',
}
});
export default app;