Sid Gifari File Manager
🏠 Root
/
home2
/
nuveprin
/
ahavahome.org
/
wp-content
/
plugins
/
give
/
src
/
Views
/
Components
/
ListTable
/
TableCell
/
Editing: index.tsx
import styles from './TableCell.module.scss'; import cx from 'classnames'; export default function TableCell({className = '', children = null, heading = false, columnId = null}) { if (heading) { return ( <th className={cx(styles.tableCell, styles.tableRowHeader, className)} scope="row"> {children} </th> ); } return <td className={cx(styles.tableCell, className)} data-column-id={columnId}>{children}</td>; } export function IdBadge({id, addClass = ''}) { return <div className={cx(styles.idBadge, addClass)}>{id}</div>; }
Save
Cancel