로그인 구현

This commit is contained in:
static
2024-12-26 19:08:28 +09:00
parent b6fbd83d6f
commit bd1cc9ea38
6 changed files with 44 additions and 7 deletions

View File

@@ -1,6 +1,8 @@
<script lang="ts">
import type { Snippet } from "svelte";
interface Props {
children?: any;
children: Snippet;
color?: "primary" | "gray";
onclick?: () => void;
}