-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.js
More file actions
39 lines (37 loc) · 1.03 KB
/
index.js
File metadata and controls
39 lines (37 loc) · 1.03 KB
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
/**
* @Date: 2016-06-17T14:29:19+08:00
* @Last modified time: 2016-08-25T17:48:23+08:00
*/
/**
* Component collection
*/
import Grid from "./src/component/grid";
import Validation from "./src/component/validation";
import Validator from "./src/component/validator";
import Calendar from "./src/component/calendar";
import DateInput from "./src/component/form/DateInput.js";
import Modal from "./src/component/modal";
import Checkboxgroup from "./src/component/form/Checkboxgroup";
import Radiogroup from "./src/component/form/Radiogroup";
import Dropdown from "./src/component/form/Dropdown";
import AutoComplete from "./src/component/autocomplete";
import ColorInput from "./src/component/form/ColorInput.js";
import Uploader from "./src/component/uploader";
import Tree from "./src/component/tree";
import Dnd from "./src/component/dnd";
export {
Grid,
Validation,
Validator,
Calendar,
DateInput,
Modal,
Checkboxgroup,
Radiogroup,
Dropdown,
AutoComplete,
ColorInput,
Uploader,
Tree,
Dnd
};