我想使用react-file-viewer,但在构建项目时遇到错误:
这是我的代码:
export default class ViewerYes extends React.Component<Props, State>{
const file = './yes.png'
const type = 'png'
public render() {
return (
<div>
<FileViewer
fileType={type}
filePath={file}
errorComponent={CustomErrorComponent}
/>
</div>
)
}
}
我在这样的父组件中调用该组件:
<ViewerYes/>
您对此问题有解决方案吗? 谢谢