Files
web/components/MyProfile/CommunicationPreferences/index.tsx

13 lines
331 B
TypeScript

import Card from "@/components/MyProfile/Card"
import Title from "@/components/TempDesignSystem/Text/Title"
import styles from "./com.module.css"
export default function CommunicationPreferences() {
return (
<Card className={styles.container}>
<Title level="h2">My communication preferences</Title>
</Card>
)
}