This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
atsebay.t/ui/src/routes/surveys/+page.svelte

11 lines
213 B
Svelte

<script lang="ts">
import { user } from '$lib/stores/user';
import SurveyList from '$lib/components/SurveyList.svelte';
</script>
<div class="card bg-light">
<SurveyList />
</div>
<div class="mb-5"></div>