Fix build errors

This commit is contained in:
Justin Edmund 2022-12-24 05:03:47 -08:00
parent 118afed193
commit 4dd43b065d
2 changed files with 2 additions and 2 deletions

View file

@ -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
) {

View file

@ -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
) {