'use client'; import React from 'react'; import { Paper, Title, Text } from '@mantine/core'; interface EmailComposerProps { templates: string[]; onSend: (email: any) => Promise; } export function EmailComposer({ templates, onSend }: EmailComposerProps) { return ( Email Composer Email composer coming soon ); }