forked from chanthasuon/lib-invoice-print
11 lines
236 B
TypeScript
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>
|
||
|
}
|