this repo has no description
at main 10 lines 269 B view raw
1<script lang="ts"> 2 import ErrorPage from '@amp/web-app-components/src/components/Error/ErrorPage.svelte'; 3 import { getI18n } from '~/stores/i18n'; 4 5 export let error: Error; 6 7 const i18n = getI18n(); 8</script> 9 10<ErrorPage translateFn={$i18n.t} {error} />