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

{__('Your first subscription!')}

{__( 'When you subscribe to a channel, you will automatically download, and be notified of, all of its new content.' )}

); }; export default ModalFirstSubscription;