Migrate more stuff

This commit is contained in:
Jon Staab
2025-02-03 16:37:14 -08:00
parent 0f705c459a
commit 8d3433b167
150 changed files with 2001 additions and 1205 deletions
+7 -2
View File
@@ -3,8 +3,13 @@
import Icon from "@lib/components/Icon.svelte"
import Button from "@lib/components/Button.svelte"
export let initialValue: Date | undefined = undefined
export let value: Date | undefined = initialValue
interface Props {
initialValue?: Date | undefined
value?: Date | undefined
}
let {initialValue = undefined, value = $bindable<Date | undefined>(initialValue)}: Props =
$props()
const init = () => {
if (!value) {