2017-04-14 66 views
0

請幫幫忙,我試圖導入反應過來,MDL到我的項目導入反應-MDL

import React from 'react'; 
import Icon from 'react-mdl/lib/Icon'; 

export default class Test extends React.Component { 
     render() { 
     return (
      <div> 
      <Icon name="add" /> 
      </div> 
     ); 
     } 
    }); 

我得到一個錯誤,我不明白爲什麼 enter image description here

如何解決這個錯誤?

回答

0

通過使用安裝react-mdl

npm install --save react-mdl

使用此導入Icon

import { Icon } from 'react-mdl';