Implement facebook auth client

This commit is contained in:
Chi Vinh Le
2018-02-13 12:26:55 +01:00
parent 3999b806c7
commit d857585c7f
10 changed files with 93 additions and 0 deletions
@@ -0,0 +1,11 @@
import React from 'react';
import { BareButton } from 'plugin-api/beta/client/components/ui';
import styles from './FacebookButton.css';
export default ({ onClick, children }) => {
return (
<BareButton className={styles.button} onClick={onClick}>
{children}
</BareButton>
);
};