mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 23:42:44 +08:00
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
import React from 'react';
|
|
import GoogleButton from '../containers/GoogleButton';
|
|
import { t } from 'plugin-api/beta/client/services';
|
|
|
|
export default () => {
|
|
return (
|
|
<GoogleButton>{t('talk-plugin-google-auth.sign_up')}</GoogleButton>
|
|
);
|
|
};
|