forked from Aaron/Kino-Website
11 lines
215 B
Plaintext
11 lines
215 B
Plaintext
---
|
|
import BaseLayout from "../layouts/BaseLayout.astro";
|
|
import AccountView from "../components/AccountView.astro";
|
|
---
|
|
|
|
<BaseLayout title="Mein Konto">
|
|
<main>
|
|
<AccountView />
|
|
</main>
|
|
</BaseLayout>
|