box-ui-elements
Version:
Box UI Elements
13 lines (12 loc) • 404 B
JavaScript
/**
* @file Main entry point for the Content Pickers ES6 wrapper
* @author Box
*/
import FilePicker from './FilePicker';
import FolderPicker from './FolderPicker';
import ContentPicker from './ContentPicker';
global.Box = global.Box || {};
global.Box.FilePicker = FilePicker;
global.Box.FolderPicker = FolderPicker;
global.Box.ContentPicker = ContentPicker;
//# sourceMappingURL=ContentPickers.js.map