// @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.' )}

{__( '2) If we have your email address, we may send you notifications and rewards related to new content.' )}

); }; export default ModalFirstSubscription;