lib-invoice-print/src/index.tsx
2020-10-16 10:22:02 +07:00

11 lines
236 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>
}