-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathindex.js
39 lines (37 loc) · 1.04 KB
/
index.js
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
// Home page
import Home from './Home';
// Draggable
import DragEvents from './Draggable/DragEvents';
// Droppable
import UniqueDropzone from './Droppable/UniqueDropzone';
// Sortable
import SimpleList from './Sortable/SimpleList';
import Transformed from './Sortable/Transformed';
import MultipleContainers from './Sortable/MultipleContainers';
// Swappable
import Flexbox from './Swappable/Flexbox';
import Floated from './Swappable/Floated';
import GridLayout from './Swappable/GridLayout';
// Plugins
import PluginsCollidable from './Plugins/Collidable';
import PluginsSnappable from './Plugins/Snappable';
import PluginsSwapAnimation from './Plugins/SwapAnimation';
import PluginsSortAnimation from './Plugins/SortAnimation';
import PluginsSnapMirror from './Plugins/SnapMirror';
const Content = {
Home,
DragEvents,
UniqueDropzone,
SimpleList,
Transformed,
MultipleContainers,
Flexbox,
Floated,
GridLayout,
PluginsCollidable,
PluginsSnappable,
PluginsSwapAnimation,
PluginsSortAnimation,
PluginsSnapMirror,
};
export default Content;