Skip to content

Commit

Permalink
feat: remove unless code
Browse files Browse the repository at this point in the history
  • Loading branch information
mumiao committed Dec 3, 2020
1 parent 819063a commit ec9a643
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export interface InputProps {
placeholder?: string;
value?: any;
style?: React.CSSProperties;
readonly defaultValue?: any;
readonly className?: string;
defaultValue?: any;
className?: string;
onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
onPressEnter?: React.KeyboardEventHandler<HTMLInputElement>;
Expand Down

0 comments on commit ec9a643

Please sign in to comment.