You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-23 22:36:32 +02:00
Co-authored-by: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com> Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
21 lines
477 B
TypeScript
21 lines
477 B
TypeScript
import { _ } from '@joplin/lib/locale';
|
|
import * as React from 'react';
|
|
import bridge from '../services/bridge';
|
|
|
|
const JoplinCloudSignUpCallToAction = () => {
|
|
|
|
const onJoplinCloudSignUpClick = async () => {
|
|
await bridge().openExternal('https://joplinapp.org/plans/');
|
|
};
|
|
|
|
return <div className="joplin-cloud-sign-up">
|
|
<a
|
|
href="#"
|
|
onClick={onJoplinCloudSignUpClick}
|
|
>{_('Sign up to Joplin Cloud')}</a>
|
|
</div>;
|
|
|
|
};
|
|
|
|
export default JoplinCloudSignUpCallToAction;
|