// @flow import React from 'react'; import { Modal } from 'modal/modal'; import Button from 'component/button'; type Props = { closeModal: () => void, navigate: string => void, }; const ModalFirstSubscription = (props: Props) => { const { closeModal, navigate } = props; return (

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

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

{__('1) You can use the')}{' '}

); }; export default ModalFirstSubscription;