Files
web/components/MyProfile/Password/index.tsx
2024-06-05 13:25:10 +02:00

15 lines
410 B
TypeScript

import Card from "@/components/MyProfile/Card"
import Title from "@/components/TempDesignSystem/Text/Title"
import { getIntl } from "@/i18n"
import styles from "./password.module.css"
export default async function Password() {
const { formatMessage } = await getIntl()
return (
<Card className={styles.container}>
<Title level="h4">{formatMessage({ id: "Password" })}</Title>
</Card>
)
}