feat(yaml): support comments (#3529)

This commit is contained in:
Erez Rokah
2020-04-07 15:00:06 +03:00
committed by GitHub
parent 4489b6ff49
commit 4afbbdd8a9
98 changed files with 458 additions and 185 deletions

View File

@ -7,7 +7,7 @@ const DatePreview = ({ value }) => (
);
DatePreview.propTypes = {
value: PropTypes.object,
value: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
};
export default DatePreview;