34 lines
1.1 KiB
JavaScript
34 lines
1.1 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')}>
|
|
<p>{__('You just subscribed to your first channel. Awesome!')}</p>
|
|
<p>{__('A few quick things to know:')}</p>
|
|
<p>
|
|
{__(
|
|
'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>
|
|
{__(
|
|
'2) If we have your email address, we will send you notifications related to new content. You may configure these emails from the Help page.'
|
|
)}
|
|
</p>
|
|
<div className="modal__buttons">
|
|
<Button button="primary" onClick={closeModal} label={__('Got it')} />
|
|
</div>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default ModalFirstSubscription;
|