lbry-desktop/ui/modal/modalFirstSubscription/view.jsx

40 lines
1.2 KiB
React
Raw Normal View History

2018-09-26 19:48:07 +02:00
// @flow
import React from 'react';
import { Modal } from 'modal/modal';
2018-03-26 23:32:43 +02:00
import Button from 'component/button';
2018-09-26 19:48:07 +02:00
type Props = {
closeModal: () => void,
};
const ModalFirstSubscription = (props: Props) => {
2018-11-21 22:20:55 +01:00
const { closeModal } = props;
return (
2018-09-26 19:48:07 +02:00
<Modal type="custom" isOpen contentLabel="Subscriptions 101" title={__('Subscriptions 101')}>
2019-09-26 18:07:11 +02:00
<div className="section__subtitle">
<p>{__('You just subscribed to your first channel. Awesome!')}</p>
<p>{__('A few quick things to know:')}</p>
</div>
<ol className="section">
<li>
{__(
'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.'
)}
{__('(Only available on the desktop app.)')}
</li>
<li>
{__(
'If we have your email address, we will send you notifications related to new content. You may configure these emails from the Help page.'
)}
</li>
</ol>
<div className="section__actions">
2019-07-21 23:31:22 +02:00
<Button button="primary" onClick={closeModal} label={__('Got it')} />
</div>
</Modal>
);
};
export default ModalFirstSubscription;