metadata-based-explorer1
Version:
Box UI Elements
23 lines (18 loc) • 471 B
Flow
/**
* @flow
* @file Main entry point for the Folder Picker ES6 wrapper
* @author Box
*/
import ContentPicker from './ContentPicker';
import { TYPE_FOLDER, CLIENT_NAME_FOLDER_PICKER } from '../../constants';
class FolderPicker extends ContentPicker {
/** @inheritdoc */
getType(): string {
return TYPE_FOLDER;
}
/** @inheritdoc */
getClientName(): string {
return CLIENT_NAME_FOLDER_PICKER;
}
}
export default FolderPicker;