9 lines
200 B
Svelte
9 lines
200 B
Svelte
<script lang="ts">
|
|
import AllTests from "./AllTests.svelte";
|
|
import BaseLayout from "./layouts/BaseLayout.svelte";
|
|
</script>
|
|
|
|
<BaseLayout title="Frontend tests">
|
|
<AllTests/>
|
|
</BaseLayout>
|