diff --git a/src/components/Input/Input.tsx b/src/components/Input/Input.tsx index adf243e8..ea21df2f 100644 --- a/src/components/Input/Input.tsx +++ b/src/components/Input/Input.tsx @@ -7,6 +7,7 @@ import styles from './Input.module.css'; interface Props { name: string; value?: string; + defaultValue?: string; onChange?: ChangeEventHandler; onBlur?: FocusEventHandler; placeholder?: string; @@ -24,6 +25,7 @@ const Input = React.forwardRef( { name, value, + defaultValue, onChange, onBlur, placeholder, @@ -50,6 +52,7 @@ const Input = React.forwardRef(