chore: initial import for test contour

This commit is contained in:
sova-bootstrap
2026-05-27 19:36:33 +03:00
commit ffd4cf9031
105 changed files with 10772 additions and 0 deletions
+13
View File
@@ -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>
);
};