static propTypes: {
arrayOfLines: PropTypes.arrayOf(PropTypes.number)
};
at arrayOf( < その括弧で構文エラーが発生しますが、ドキュメントを見ると、PropTypes.array だけを実行するのが正しいように思われます。または number
私の含まれるものはこれです:
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デモからのものです