import React, { ComponentType } from 'react'; import { FormattedMessage as Message } from 'react-intl'; import { Helmet } from 'react-helmet-async'; import { Button, Form } from 'app/components/ui/form'; import siteName from 'app/pages/root/siteName.intl'; import appName from 'app/components/auth/appInfo/appName.intl'; import { BackButton } from '../ProfileForm'; import styles from '../profileForm.scss'; import ownStyles from './deleteAccount.scss'; interface Props { onSubmit?: () => Promise; } const DeleteAccount: ComponentType = ({ onSubmit }) => (
{(pageTitle) => (

{pageTitle}

)}

{/* TODO: missing colon */}
{/* TODO: missing colon */}
Chrly:
{/* TODO: missing colon */}

); export default DeleteAccount;