'use client'; import React from 'react'; import { Paper, Title, Text } from '@mantine/core'; interface EmailTemplateEditorProps { template: any; onChange: (template: any) => void; testData?: any; } export function EmailTemplateEditor({ template, onChange, testData }: EmailTemplateEditorProps) { return ( Email Template Editor Template editor coming soon ); }