chore: initial import for test contour
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import styles from './Button.module.scss';
|
||||
|
||||
export const Button = ({ children, onClick, type = 'button', className = '' }) => {
|
||||
return (
|
||||
<button
|
||||
type={type}
|
||||
onClick={onClick}
|
||||
className={`${styles.button} btn btn-success ${className}`}
|
||||
>
|
||||
{children}
|
||||
</button>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user