React material-ui,网格列表无法渲染网格

时间:2018-03-03 14:46:27

标签: reactjs

<div>
     <div style={styles.root}>
          <GridList cols={3} padding={50} cellHeight={300} style={styles.gridList}>

               {Object.keys(appList).map(key => {
                    return (<DistributedViewAppThumbnail distributedApp={appList[key]}
                                                                 currentTime={new Date().getTime()}/>

                            )
                        })};

           </GridList>
      </div>
 </div>

当我渲染GridList时,它抛出一个像这样的

的异常
bundle.js:22 TypeError: Cannot read property 'cols' of undefined

从下面的控制台查看。 error

0 个答案:

没有答案