auth-context-provider/src/index.tsx

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