import React from 'react' import { Button, Container, Heading, Text, useDisclosure, } from '@chakra-ui/react' import DeleteConfirmation from './DeleteConfirmation' const DeleteAccount: React.FC = () => { const confirmationModal = useDisclosure() return ( <> Delete Account Permanently delete your data and everything associated with your account. ) } export default DeleteAccount