qa: New route to export data
This commit is contained in:
parent
31bccddc49
commit
d85417b925
3 changed files with 77 additions and 0 deletions
16
qa/ui/src/routes/export/+page.svelte
Normal file
16
qa/ui/src/routes/export/+page.svelte
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<script>
|
||||
import {
|
||||
Container,
|
||||
Spinner,
|
||||
} from 'sveltestrap';
|
||||
</script>
|
||||
|
||||
<Container class="mt-2 mb-5">
|
||||
{#await fetch('api/qa/export')}
|
||||
<Spinner />
|
||||
{:then res}
|
||||
{#await res.json() then md}
|
||||
<pre>{md}</pre>
|
||||
{/await}
|
||||
{/await}
|
||||
</Container>
|
||||
Reference in a new issue