lib-invoice-print/src/index.tsx

11 lines
236 B
TypeScript
Raw Normal View History

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>
}