17 lines
297 B
TypeScript
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
|