mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
/**
|
|
* 渲染pdf
|
|
* 直接用googledocs预览pdf
|
|
* @param {*} file
|
|
* @returns
|
|
*/
|
|
export function Pdf({ file }) {
|
|
const src =
|
|
'https://docs.google.com/viewer?embedded=true&url=' +
|
|
encodeURIComponent(file)
|
|
return (
|
|
<embed src={src} type='application/pdf' width='100%' height='100%'></embed>
|
|
)
|
|
}
|