警告:propType失败:不支持直接调用PropTypes验证器

时间:2017-08-24 12:29:57

标签: reactjs antd react-proptypes react-flexbox-grid

我一直在尝试为我的反应项目添加网格,但是当我加载页面时,它给了我一个错误:

Warning: Failed propType: Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at https://github.com/facebook/prop-types/blob/master/README.md#difference-from-reactproptypes-dont-call-validator-functions Check the render method of `GridTest`.

尝试使用antdreact-flexbox-grid,但两个库都会产生相同的错误。

代码:

    import React, { Component } from 'react';
    import {Grid, Row, Col} from 'react-flexbox-grid';

    export default class GridTest extends Component {
        render() {
          return (
            <Grid>
              <Row>
                <Col xs={6} md={3}>Hello, world!</Col>
              </Row>
            </Grid>
          );
        }
    }

有关如何解决此问题的任何建议?我认为问题可能是外部lib没有捆绑prop-types或其他东西造成的?

0 个答案:

没有答案