Trying to create a form with preview of what should be exported as pdf. Great tools, but I have an issue:
Adding the special characters "åäö" will render fine i the react component <Preview /> but not show in the pdf. I think they are replaced with whitespaces as of now. This code is part of the React component:
<PDFExport
paperSize={"a4"}
fileName="sample.pdf"
title=""
subject=""
keywords=""
ref={r => (toBeExportedAsPdf = r)}
>
<Preview
props={this.state.someString}
/>
</PDFExport>
Is there a fix for this avaliable? Thanks!