forked from algorithm-visualizer/algorithm-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
19 lines (17 loc) · 625 Bytes
/
index.js
File metadata and controls
19 lines (17 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { actions as currentActions } from './current';
import { actions as directoryActions } from './directory';
import { actions as envActions } from './env';
import { actions as playerActions } from './player';
import { actions as toastActions } from './toast';
export { default as current } from './current';
export { default as directory } from './directory';
export { default as env } from './env';
export { default as player } from './player';
export { default as toast } from './toast';
export const actions = {
...currentActions,
...directoryActions,
...envActions,
...playerActions,
...toastActions,
};