blob: 0e1b6a4c8469674302ad6459f7df645d3bd5c64b (
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;
|