mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
17 lines
482 B
Svelte
17 lines
482 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import ErrorPage from "$lib/components/ErrorPage.svelte";
|
|
import ImportCsvPage from "../ImportCsvPage.svelte";
|
|
import type { PageData } from "./$types";
|
|
|
|
export let data: PageData;
|
|
</script>
|
|
|
|
{#if data.initialError}
|
|
<ErrorPage error={data.initialError} />
|
|
{:else}
|
|
<ImportCsvPage state={data.state} />
|
|
{/if}
|