我已经在npm上创建了一个react component包,但是当我从react app中的包中导入组件时,它给出了package组件中的错误。 error in component这是github https://github.com/naveenkash/fluff-tail/tree/master/components/card上的文件,我尝试导入这两个组件,并且这两个组件均出现错误
./node_modules/fluff-tail/components/card/CardHoverInteraction/index.js
SyntaxError: C:\Users\navee\Documents\Projects\test2\node_modules\fluff-tail\components\card\CardHoverInteraction\index.js: Unexpected token (7:6)
5 | render(){
6 | return(
> 7 | <div className="interaction-card">
| ^
8 | <div className="content">
9 | <h2 className="title">{props.title}</h2>
10 | <p className="copy">{props.desc}</p>