This commit is contained in:
2025-06-12 00:46:06 +09:00
parent 56f9ba699c
commit 3363fcd2ae
14 changed files with 32 additions and 171 deletions
+1 -4
View File
@@ -4,10 +4,7 @@ import SettingsDialogue from './SettingsDialogue'
import { Button } from './ui/button'
import clsx from 'clsx'
type User = { id: number
name: string | null
inheritanceCode: string
role: string }
import type { User } from '@/types'
type Props = { user: User
setUser: (user: User) => void }