2025-04-24 13:11:28 +08:00

17 lines
297 B
TypeScript

import classNames from 'classnames'
type CellProps = {
children: React.ReactNode
className?: string
}
function Cell({ children, className }: CellProps) {
return (
<div className={classNames('affiliations-table-cell', className)}>
{children}
</div>
)
}
export default Cell