remirror/remirror

View on GitHub
packages/storybook-react/stories/extension-positioner/positioner-extension.stories.tsx

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import {
  Always,
  Block,
  Cursor,
  EmptyBlock,
  EmptyBlockEnd,
  EmptyBlockStart,
  Selection,
} from './basic';
import {
  ActiveCell,
  ActiveCellColumn,
  ActiveCellRow,
  AllCellSelection,
  AllColumnsStart,
  AllRowsStart,
  CellColumnSelection,
  CellRowSelection,
  CellSelection,
  SelectedColumn,
  SelectedRow,
  Table,
} from './table-positioners';

export { Cursor };
export { Selection };
export { Always };
export { Block };
export { EmptyBlock };
export { EmptyBlockStart };
export { EmptyBlockEnd };
export { Table };
export { ActiveCell };
export { ActiveCellColumn };
export { ActiveCellRow };
export { CellSelection };
export { CellColumnSelection };
export { CellRowSelection };
export { AllCellSelection };
export { SelectedColumn };
export { SelectedRow };
export { AllColumnsStart };
export { AllRowsStart };
export default { title: 'Extensions / Positioner' };