File size: 145 Bytes
1e92f2d |
1 2 3 4 5 6 |
import styles from './style.module.css'
export default function Button(props: any) {
return <button {...props} className={styles.button} />
}
|
1e92f2d |
1 2 3 4 5 6 |
import styles from './style.module.css'
export default function Button(props: any) {
return <button {...props} className={styles.button} />
}
|