// @flow import { SIMPLE_SITE } from 'config'; import * as PAGES from 'constants/pages'; import React from 'react'; import { Modal } from 'modal/modal'; import Card from 'component/common/card'; import Confetti from 'react-confetti'; import Button from 'component/button'; type Props = { doHideModal: () => void }; const YoutubeWelcome = (props: Props) => { const { doHideModal } = props; return (

{__("You've escaped the land of spying, censorship, and exploitation.")} 💩

{__('Welcome to the land of content freedom.')} 🌈

) : (

{__('You make the party extra special!')} 💖

) } actions={
} />
); }; export default YoutubeWelcome;