You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
301 B
JavaScript
12 lines
301 B
JavaScript
import React from 'react'
|
|
|
|
import styles from './styles.module.css'
|
|
|
|
export default function Button({onClick, enabled, type, children}){
|
|
return (
|
|
<div className={styles.formElementContainer}>
|
|
<button disabled={!enabled} onClick={onClick} type={type} children={children}/>
|
|
</div>
|
|
)
|
|
}
|