blob: a0aeba1e32c55b3b0a851706531111ca26e5e74f (
plain)
1
2
3
4
5
6
7
8
9
10
|
<script lang="ts">
import ErrorPage from '@amp/web-app-components/src/components/Error/ErrorPage.svelte';
import { getI18n } from '~/stores/i18n';
export let error: Error;
const i18n = getI18n();
</script>
<ErrorPage translateFn={$i18n.t} {error} />
|