pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
509 B
21 lines
509 B
import { Container, Heading, Text } from "@chakra-ui/react"
|
|
import { useTranslation } from "react-i18next"
|
|
|
|
import DeleteConfirmation from "./DeleteConfirmation"
|
|
|
|
const DeleteAccount = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<Container maxW="full">
|
|
<Heading size="sm" py={4}>
|
|
{t("user.deleteAccount")}
|
|
</Heading>
|
|
<Text>
|
|
{t("messages.confirmation.deleteAccount")}
|
|
</Text>
|
|
<DeleteConfirmation />
|
|
</Container>
|
|
)
|
|
}
|
|
export default DeleteAccount
|
|
|