Files
web/components/MyProfile/CommunicationPreferences/index.tsx
2024-04-12 16:25:52 +02:00

12 lines
290 B
TypeScript

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