import React from 'react'; import { Section, Text } from '@react-email/components'; import { theme } from '../theme'; interface CardProps { children: React.ReactNode; } export const Card = ({ children }: CardProps) => { return (
{children}
); };