This commit is contained in:
2025-03-09 17:13:31 +01:00
parent 47d4c7926e
commit 8fedbc34fa
24 changed files with 755 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
<script lang="ts">
import Button from "./ui/button/button.svelte";
import Input from "./ui/input/input.svelte";
type Props = {
text: string;
action: () => void;
};
let { action, text }: Props = $props();
</script>
<div>
<h2>{text}</h2>
<Input placeholder={"1"} type="tel" />
<Button onclick={action}>Submit</Button>
</div>