// @flow 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.')} 🌈

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