import React from 'react'
export default function Preview({
pdfIsLoading,
pdfError,
pdfUrl,
}: {
pdfIsLoading: boolean
pdfError: string
pdfUrl: string
}) {
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
}