import * as React from 'react' import styles from './styles.module.css' interface Props { text: string } export const ExampleComponent = ({ text }: Props) => { return
Example Component: {text}
} export * from 'pdfmake/interfaces' export * from 'pdfmake/build/pdfmake'