-
Notifications
You must be signed in to change notification settings - Fork 375
Expand file tree
/
Copy pathmodule.js
More file actions
41 lines (35 loc) · 975 Bytes
/
module.js
File metadata and controls
41 lines (35 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import Griddle from './index';
import * as actions from './actions';
import components from './components';
import * as constants from './constants';
import * as selectors from './selectors/dataSelectors';
import settingsComponentObjects from './settingsComponentObjects';
import utils from './utils';
import CorePlugin from './core';
import LegacyStylePlugin from './plugins/legacyStyle';
import LocalPlugin from './plugins/local';
import LocalCustomPlugin from './plugins/localCustomPlugin';
import PositionPlugin from './plugins/position';
const plugins = {
CorePlugin,
LegacyStylePlugin,
LocalPlugin,
LocalCustomPlugin,
PositionPlugin,
};
const ColumnDefinition = components.ColumnDefinition;
const RowDefinition = components.RowDefinition;
const connect = utils.connect;
export default Griddle;
export {
actions,
components,
constants,
selectors,
settingsComponentObjects,
utils,
plugins,
ColumnDefinition,
RowDefinition,
connect,
};