reactjs - Import react-mdl -
please help, trying import react-mdl project
import react 'react'; import icon 'react-mdl/lib/icon';  export default class test extends react.component {       render() {         return (           <div>             <icon name="add" />           </div>         );       }     }); i error, can not understand why enter image description here
how fix error?
install react-mdl using:
npm install --save react-mdl
use import icon:
import { icon } 'react-mdl'; 
Comments
Post a Comment