5ecf50093c07660d66a7e3ed97a9b3899281d267445a695c9a2155a4624de8e8789a1a88f5a1eebfb79026f1c71c8ee94786610fc464592026da030f52dc02 335 B

123456789101112
  1. import {getEditor} from './../editors';
  2. import {getRenderer} from './../renderers';
  3. import {getValidator} from './../validators';
  4. const CELL_TYPE = 'time';
  5. export default {
  6. editor: getEditor('text'),
  7. // displays small gray arrow on right side of the cell
  8. renderer: getRenderer('text'),
  9. validator: getValidator(CELL_TYPE),
  10. };