hackatime/app/javascript/pages/OAuthApplications/Edit.svelte
Mahad Kalam ef94a9da9d
OAuth2 apps inertia'd! (#966)
* OAuth2 apps Inertia'd!

* Rose Pine/Rose Pine Dawn themes!

* Run formatting pass

* add some tests?
2026-02-17 13:45:44 +00:00

19 lines
478 B
Svelte

<script lang="ts">
import Form from "./Form.svelte";
import type { OAuthApplicationFormProps } from "./types";
let props: OAuthApplicationFormProps = $props();
</script>
<svelte:head>
<title>{props.page_title}</title>
</svelte:head>
<div class="mx-auto max-w-4xl space-y-4">
<header>
<h1 class="text-3xl font-bold text-surface-content">{props.heading}</h1>
<p class="mt-1 text-sm text-muted">{props.subheading}</p>
</header>
<Form {...props} />
</div>