ghost-user-maker/src/main.ts
Badri Sunderarajan 38b1aff162 Update all indentation from tabs to spaces
It seems there were a few stray tabs that used to be there earlier
but since we're now using spaces, we've got rid of all the tabs
permanently.
2022-08-05 11:07:41 +05:30

13 lines
175 B
TypeScript

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