``` tsx
interface IOpenPdfViwerParam {
  filePath: string;
  title?: string;
}
private openPdfViewer = () => {
  openPdfViewer({ filePath: this.state.filePath });
}
```
