1import styles from './Button.css'
2
3const MyButton = ({children, onClick, type='primary', ...rest }) =>
4(
5 <button
6 onClick = {onClick}
7 className = {styles.primary}
8 {...rest}
9 >
10 {children}
11 </button>
12);
13