import PropTypes from 'prop-types'; import React from 'react'; import { useIntl } from 'react-intl'; import { useDispatch } from 'react-redux'; import { Link } from 'react-router-dom'; import LandingGradient from 'soapbox/components/landing-gradient'; import SiteLogo from 'soapbox/components/site-logo'; import BundleContainer from 'soapbox/features/ui/containers/bundle_container'; import { NotificationsContainer } from 'soapbox/features/ui/util/async-components'; import { logOut } from '../../actions/auth'; import { Button, Stack, Text } from '../../components/ui'; const WaitlistPage = ({ account }) => { const dispatch = useDispatch(); const intl = useIntl(); const onClickLogOut = (event) => { event.preventDefault(); dispatch(logOut(intl)); }; return (
Waitlisted @{account.acct} has been created successfully! Due to massive demand, we have placed you on our waitlist. We love you, and you're not just another number to us. We are working to get you on our platform. Stay tuned!
{(Component) => }
); }; WaitlistPage.propTypes = { account: PropTypes.object, }; export default WaitlistPage;