mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 23:18:48 +00:00
데모용 임시 회원가입 구현
This commit is contained in:
18
src/routes/(fullscreen)/auth/login/NicknameModal.svelte
Normal file
18
src/routes/(fullscreen)/auth/login/NicknameModal.svelte
Normal file
@@ -0,0 +1,18 @@
|
||||
<script lang="ts">
|
||||
import { TextInputModal } from "$lib/components/organisms";
|
||||
|
||||
interface Props {
|
||||
isOpen: boolean;
|
||||
onSubmitClick: (nickname: string) => void;
|
||||
}
|
||||
|
||||
let { isOpen = $bindable(), onSubmitClick }: Props = $props();
|
||||
</script>
|
||||
|
||||
<TextInputModal
|
||||
bind:isOpen
|
||||
title="닉네임 설정하기"
|
||||
placeholder="닉네임"
|
||||
submitText="새 계정 만들기"
|
||||
{onSubmitClick}
|
||||
/>
|
||||
Reference in New Issue
Block a user