lbry-desktop/src/renderer/modal/modalFirstSubscription/view.jsx
Thomas Zarebczan 270dee1469 update subscription modal text
Is this too wordy? Was thinking we could give a link the edit email preferences but would need to bring in the access token here. P
2019-01-07 02:14:30 -05:00

37 lines
1.2 KiB
JavaScript

// @flow
import React from 'react';
import { Modal } from 'modal/modal';
import Button from 'component/button';
type Props = {
closeModal: () => void,
};
const ModalFirstSubscription = (props: Props) => {
const { closeModal } = props;
return (
<Modal type="custom" isOpen contentLabel="Subscriptions 101" title={__('Subscriptions 101')}>
<section className="card__content">
<p>{__('You just subscribed to your first channel. Awesome!')}</p>
<p>{__('A few quick things to know:')}</p>
<p className="card__content">
{__(
'1) This app will automatically download new free content from channels you are subscribed to. You may configure this in Settings or on the Subscriptions page.'
)}
</p>
<p className="card__content">
{__(
'2) If we have your email address, we will send you notifications related to new content. You may configure subscription emails from the Help page.'
)}
</p>
<div className="modal__buttons">
<Button button="primary" onClick={closeModal} label={__('Got it')} />
</div>
</section>
</Modal>
);
};
export default ModalFirstSubscription;