import React from 'react'
import { IPdfProps } from '../interfaces/IPdfProps'
export default function Preview({ pdfIsLoading, pdfError, pdfUrl }: IPdfProps) {
if (pdfIsLoading) {
return
Lade…
}
const errorStyles = {
padding: '6px 12px',
color: 'white',
backgroundColor: '#d81e1e',
borderRadius: '3px',
}
if (pdfError) {
return (
😢
{' '}
{pdfError}
)
}
if (!pdfUrl) {
return Knopf drücken dann gibts hier was zu sehen!
}
const styles = {
width: '700px',
height: '1050px',
}
return
}