-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #347 from mercadopago/release/7.2.0
Release v7.2.0
- Loading branch information
Showing
82 changed files
with
13,052 additions
and
9,156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const InputSelect = ({ name, label, optional, options, helperMessage, hiddenId, defaultOption }) => ( | ||
<input-select | ||
name={name} | ||
label={label} | ||
options={options} | ||
optional={optional} | ||
helper-message={helperMessage} | ||
hidden-id={hiddenId} | ||
default-option={defaultOption} | ||
> | ||
</input-select> | ||
); | ||
|
||
export default InputSelect; |
Oops, something went wrong.