// @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 (

{__('You just subscribed to your first channel. Awesome!')}

{__('A few quick things to know:')}

{__( '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.' )}

{__( '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.' )}

); }; export default ModalFirstSubscription;