tandem-front-end
Version:
Visual editor for web components
14 lines • 909 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var gutter_1 = require("../../../gutter");
var open_files_1 = require("./open-files");
var file_navigator_1 = require("./file-navigator");
var BaseLeftGutterComponent = function (_a) {
var editorWindows = _a.editorWindows, dispatch = _a.dispatch, rootDirectory = _a.rootDirectory, root = _a.root;
return (React.createElement(gutter_1.GutterComponent, null,
React.createElement(open_files_1.OpenFilesPaneComponent, { root: root, editorWindows: editorWindows, dispatch: dispatch }),
React.createElement(file_navigator_1.FileNavigatorPaneComponent, { dispatch: dispatch, rootDirectory: rootDirectory, selectedFileNodeIds: root.selectedFileNodeIds, insertFileInfo: root.insertFileInfo })));
};
exports.LeftGutterComponent = BaseLeftGutterComponent;
//# sourceMappingURL=index.js.map