2020-10-16 10:22:02 +07:00
|
|
|
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>
|
|
|
|
}
|
2020-10-16 10:45:37 +07:00
|
|
|
|
2020-10-16 11:48:05 +07:00
|
|
|
// export * from 'pdfmake/interfaces'
|
2020-10-16 10:45:37 +07:00
|
|
|
export * from 'pdfmake/build/pdfmake'
|
2020-10-16 11:30:59 +07:00
|
|
|
export * from './invoice'
|