Skip to content

Commit

Permalink
Fixed 27 solution
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed Jun 21, 2023
1 parent 1c5a34a commit 384fa20
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ type InputProps = (
value: string;
onChange: ChangeEventHandler;
}
| {}
| {
value?: undefined;
onChange?: undefined;
}
) & {
label: string;
};
Expand Down

0 comments on commit 384fa20

Please sign in to comment.