Skip to content

Instantly share code, notes, and snippets.

View ywang04's full-sized avatar

Yang ywang04

  • Sydney
View GitHub Profile
@ywang04
ywang04 / React.PropTypes.shape
Created June 14, 2020 08:09
How do you validate the PropTypes of a nested object in ReactJS?
//https://stackoverflow.com/questions/26923042/how-do-you-validate-the-proptypes-of-a-nested-object-in-reactjs
import PropTypes from 'prop-types';
propTypes: {
data: PropTypes.shape({
id: PropTypes.number.isRequired,
title: PropTypes.string
})
}
@ywang04
ywang04 / 判断函数名在不在
Created June 9, 2020 09:09
判断函数名在不在的最新写法
const handleChange = e => !disabled && onChange?.(e.target.value);