Chore: auto-formatting

This commit is contained in:
Pieter Vander Vennet 2023-07-15 19:28:59 +02:00
parent 996d9e43be
commit 0e94cc707b
7 changed files with 49 additions and 40 deletions

View file

@ -1,14 +1,20 @@
<script>
import Tr from "./Base/Tr.svelte";
import Translations from "./i18n/Translations.ts";
import BackButton from "./Base/BackButton.svelte";
import Tr from "./Base/Tr.svelte"
import Translations from "./i18n/Translations.ts"
import BackButton from "./Base/BackButton.svelte"
console.log("???")
</script>
<div class="flex flex-col">
<Tr t={Translations.t.general["404"]}></Tr>
<BackButton clss="m-8" on:click={() => {window.location = "index.html"}}>
<Tr t={Translations.t.general["404"]} />
<BackButton
clss="m-8"
on:click={() => {
window.location = "index.html"
}}
>
<div class="flex w-full justify-center">
<Tr t={Translations.t.general.backToIndex}></Tr>
<Tr t={Translations.t.general.backToIndex} />
</div>
</BackButton>
</div>