static propTypes: {
arrayOfLines: PropTypes.arrayOf(PropTypes.number)
};
在 arrayOf( < 在那个括号它给了我一个语法错误,但是看看文档似乎它应该是正确的,只是 PropTypes.array 似乎也可以正常工作,或者数字
我的包括:
import React, {Component, PropTypes} from 'react';
import ReactDOM from 'react-dom';
import CodeLine from './CodeLine';
import GridSpace from './GridSpace';
export default class Grid extends React.Component{
static propTypes: {
arrayOfLines: PropTypes.arrayOf(PropTypes.number)
};
renderGridSpace(x,y) {
const gray = (x + y) % 2 === 1;
const [spaceX, spaceY] = this.props.arrayOfLines
}
render() {
const { gray } = this.props;
const fill = gray ? 'gray' : 'white';
const stroke = gray ? 'white' : 'gray';
console.log(PropTypes);
return (
<div style={{
backgroundColor: fill,
color: stroke,
width: '100%',
height: '100%'
}} >
{this.props.children}
</div>
);
}
}
这实际上只是来自 reactdnd 演示