fix: use generic Select component in Date

This commit is contained in:
Arvid Norlin
2024-05-31 13:44:48 +02:00
parent e649a842c6
commit ba644a2c89
6 changed files with 29 additions and 163 deletions

View File

@@ -7,5 +7,5 @@ export interface SelectProps
name: string
onSelect: (key: Key) => void
placeholder?: string
defaultSelectedKey: Key
defaultSelectedKey?: Key
}