Fix build errors
This commit is contained in:
parent
118afed193
commit
4dd43b065d
2 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ interface Props
|
|||
label?: string
|
||||
}
|
||||
|
||||
const Input = React.forwardRef<HTMLInputElement, Props>(function input(
|
||||
const Input = React.forwardRef<HTMLInputElement, Props>(function Input(
|
||||
props: Props,
|
||||
forwardedRef
|
||||
) {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ interface Props
|
|||
triggerClass?: string
|
||||
}
|
||||
|
||||
const Select = React.forwardRef<HTMLButtonElement, Props>(function input(
|
||||
const Select = React.forwardRef<HTMLButtonElement, Props>(function Select(
|
||||
props: Props,
|
||||
forwardedRef
|
||||
) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue