mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
cf2dfc6bf1
[SettingsPage] Integration Branch GitOrigin-RevId: 5a3c26b2a02d716c4ae3981e3f08b811ae307725
16 lines
297 B
TypeScript
16 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
|