Ihor Yemets

Results 3 comments of Ihor Yemets
trafficstars

You can try to use this way: ```typescript export type ComponentProps = { foo?: boolean; bar: string; className?: string; }; export const Component = React.forwardRef( (props: ComponentProps, ref?: React.Ref) =>...

In my case I have been using something like this: `component.tsx` ```typescript import React from 'react'; import { compose } from 'recompose'; import { withTranslations, WithTranslationsProps } from './i18n'; import...

@FlawaCLV, I faced with a similar issue.. As a quick fix I just added some check before using Annots(). If it throws an error I just create expected pdf object...