cell.tsx 297 B

12345678910111213141516
  1. import classNames from 'classnames'
  2. type CellProps = {
  3. children: React.ReactNode
  4. className?: string
  5. }
  6. function Cell({ children, className }: CellProps) {
  7. return (
  8. <div className={classNames('affiliations-table-cell', className)}>
  9. {children}
  10. </div>
  11. )
  12. }
  13. export default Cell