Auth Actions

This commit is contained in:
Belen Curcio
2016-11-14 13:04:44 -03:00
parent e7d114d5df
commit 9341caa4d5
11 changed files with 189 additions and 77 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from 'react';
import styles from './styles.css';
const Button = ({cStyle = 'local', children, className, ...props}) => (
<button
className={`${styles.button} ${styles[`type--${cStyle}`]} ${className}`}
{...props}
>
{children}
</button>
);
export default Button;