Skip to content

Commit

Permalink
Use TS in one file where we missed it
Browse files Browse the repository at this point in the history
  • Loading branch information
scosman committed Nov 1, 2024
1 parent 6c757c5 commit 1fc694c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/routes/(marketing)/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<script>
<script lang="ts">
import { WebsiteName } from "./../../config"
import "../../app.css"
/**
* @typedef {Object} Props
* @property {import('svelte').Snippet} [children]
*/
/** @type {Props} */
let { children } = $props()
interface Props {
children?: import("svelte").Snippet
}
let { children }: Props = $props()
</script>

<div class="navbar bg-base-100 container mx-auto">
Expand Down

0 comments on commit 1fc694c

Please sign in to comment.