handsontableType.js 274 B

12345678910
  1. import { getEditor } from './../editors';
  2. import { getRenderer } from './../renderers';
  3. const CELL_TYPE = 'handsontable';
  4. export default {
  5. editor: getEditor(CELL_TYPE),
  6. // displays small gray arrow on right side of the cell
  7. renderer: getRenderer('autocomplete'),
  8. };