odd-app-template/src/routes/index.svelte

15 lines
219 B
Svelte

<script lang="ts">
import { initialize } from '$lib/common/webnative'
const init = async () => {
await initialize()
}
init()
</script>
<h1 class="text-center">Application Interface</h1>
<style>
</style>