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

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -