native sepeartion and bundle step

This commit is contained in:
2019-07-06 00:46:02 +02:00
parent baea9498be
commit 0c75f76c54
6 changed files with 65 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
import DevTool from './components/DevTool/index';
import DevToolModal from './components/DevTool/Modal';
import log from './log';
import network from './network';
import events from './events';
const show = () => events.publish('SHOW_DEVTOOLS');
const hide = () => events.publish('HIDE_DEVTOOLS');
export {
DevTool,
DevToolModal,
log,
network,
show,
hide,
};