mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2025-10-16 11:55:39 +00:00
17 lines
352 B
JavaScript
17 lines
352 B
JavaScript
import wrapperFactory from './src/wrapper';
|
|
import editingCellFactory from './src/editing-cell';
|
|
import {
|
|
CLICK_TO_CELL_EDIT,
|
|
DBCLICK_TO_CELL_EDIT,
|
|
DELAY_FOR_DBCLICK
|
|
} from './src/const';
|
|
|
|
export default (options = {}) => ({
|
|
wrapperFactory,
|
|
editingCellFactory,
|
|
CLICK_TO_CELL_EDIT,
|
|
DBCLICK_TO_CELL_EDIT,
|
|
DELAY_FOR_DBCLICK,
|
|
options
|
|
});
|