overleaf/services/web/frontend/js/features/settings/components/emails/cell.tsx

10 lines
181 B
TypeScript
Raw Normal View History

type CellProps = {
children: React.ReactNode
}
function Cell({ children }: CellProps) {
return <div className="affiliations-table-cell">{children}</div>
}
export default Cell