import React from 'react'; import { Modal } from 'modal/modal'; import Link from 'component/link'; const ModalFirstSubscription = props => { const { closeModal, navigate } = props; return (

{__('Subscriptions 101')}

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

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

{__('1) You can use the')}{' '} { navigate('/subscriptions'); closeModal(); }} />{' '} {__('to view content across all of your subscribed channels.')}

{__( '2) This app will automatically download new free content from channels you are subscribed to.' )}

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

); }; export default ModalFirstSubscription;