Home Reference Source

src/components/widgets/Table/cells/index.js

import TextCell from './TextCell/TextCell';
import LinkCell from './LinkCell/LinkCell';
import IconCell from './IconCell/IconCell';
import ImageCell from './ImageCell/ImageCell';
import ProgressBarCell from './ProgressBarCell/ProgressBarCell';
import BadgeCell from './BadgeCell/BadgeCell';
import CheckboxCell from './CheckboxCell/CheckboxCell';
import CollapsedCell from './CollapsedCell/CollapsedCell';
import ButtonsCell from './ButtonsCell/ButtonsCell';
import EditableCell from './EditableCell/EditableCell';

export default {
  TextCell: TextCell,
  LinkCell: LinkCell,
  IconCell: IconCell,
  ImageCell: ImageCell,
  ProgressBarCell: ProgressBarCell,
  BadgeCell: BadgeCell,
  CheckboxCell: CheckboxCell,
  CollapsedCell: CollapsedCell,
  ButtonsCell: ButtonsCell,
  EditableCell: EditableCell,
};