Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-23 21:32:00 +00:00
co-authored by renee-png
parent a3df1396a5
commit add1b5837f
+3 -7
View File
@@ -9,15 +9,11 @@ export interface TemplateEntry {
to?: string
}
import { template as taskReminder } from './task-reminder'
/**
* Template registry — maps template names to their React Email components.
* Import and register new templates here after creating them in this directory.
*
* Example:
* import { template as welcomeTemplate } from './welcome'
* // then add to TEMPLATES: 'welcome': welcomeTemplate
*/
export const TEMPLATES: Record<string, TemplateEntry> = {
// Add templates here as they are created, e.g.:
// 'welcome': welcomeTemplate,
'task-reminder': taskReminder,
}