forked from chanthasuon/lib-invoice-print
14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
import * as React from 'react'
|
|
import styles from './styles.module.css'
|
|
|
|
interface Props {
|
|
text: string
|
|
}
|
|
|
|
export const ExampleComponent = ({ text }: Props) => {
|
|
return <div className={styles.test}>Example Component: {text}</div>
|
|
}
|
|
|
|
export * from 'pdfmake/interfaces'
|
|
export * from 'pdfmake/build/pdfmake'
|