blob: d8e04aa711473bb8742f6637934bd32d4a37146f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { h } from 'preact';
import Styles from './styles.module.scss';
function Button({ children }) {
return <span className={Styles.button}>{children}</span>;
}
export default Button;
|