Files
nuchat/ui/src/views/HomeView.vue
Fergus Molloy a54648d11b
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
remove separate ui service, serve ui with backend
2025-07-18 01:55:34 +01:00

10 lines
151 B
Vue

<script setup lang="ts">
import TheWelcome from '../components/TheWelcome.vue'
</script>
<template>
<main>
<TheWelcome />
</main>
</template>