2018-09-26 13:48:07 -04:00
// @flow
2018-03-16 11:22:19 -07:00
import React from 'react' ;
import { Modal } from 'modal/modal' ;
2018-03-26 14:32:43 -07:00
import Button from 'component/button' ;
2018-03-16 11:22:19 -07:00
2018-09-26 13:48:07 -04:00
type Props = {
closeModal : ( ) => void ,
} ;
const ModalFirstSubscription = ( props : Props ) => {
2018-11-21 16:20:55 -05:00
const { closeModal } = props ;
2018-03-16 11:22:19 -07:00
return (
2018-09-26 13:48:07 -04:00
< Modal type = "custom" isOpen contentLabel = "Subscriptions 101" title = { _ _ ( 'Subscriptions 101' ) } >
< section className = "card__content" >
2018-03-16 12:04:22 -07:00
< p > { _ _ ( 'You just subscribed to your first channel. Awesome!' ) } < / p >
< p > { _ _ ( 'A few quick things to know:' ) } < / p >
2018-03-26 14:32:43 -07:00
< p className = "card__content" >
2018-03-16 12:04:22 -07:00
{ _ _ (
2019-01-04 17:02:59 -05:00
'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.'
2018-03-16 12:04:22 -07:00
) }
< / p >
2018-03-26 14:32:43 -07:00
< p className = "card__content" >
2018-03-16 11:26:44 -07:00
{ _ _ (
2019-01-07 02:14:04 -05:00
'2) If we have your email address, we will send you notifications related to new content. You may configure these emails from the Help page.'
2018-03-16 11:26:44 -07:00
) }
2018-03-16 11:22:19 -07:00
< / p >
< div className = "modal__buttons" >
2018-03-26 14:32:43 -07:00
< Button button = "primary" onClick = { closeModal } label = { _ _ ( 'Got it' ) } / >
2018-03-16 11:22:19 -07:00
< / div >
< / section >
< / Modal >
) ;
} ;
export default ModalFirstSubscription ;