mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 03:55:09 +08:00
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
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>
|
|
);
|
|
};
|