我已经接管了一个 React 项目,并且正在摸索将react-share与react-image-lightbox结合起来。我很不熟悉,React
所以Typescript
非常感谢任何见解。
以下是相关片段:
import {
FacebookShareButton,
GooglePlusShareButton,
LinkedinShareButton,
TwitterShareButton,
EmailShareButton,
} from 'react-share'
const Lightbox = require('react-image-lightbox')
render() {
return(
<Lightbox
...
toolbarButtons={['Facebook share button?', 'Twitter share button?']}
...
onCloseRequest={this.handleCloseViewer}
onMovePrevRequest={this.handleViewPrev}
onMoveNextRequest={this.handleViewNext}
/>
)
}