/** * @fileoverview Micro component for showing StorageList */ import PropTypes from 'prop-types' import React from 'react' import styles from './StorageList.styl' import CSSModules from 'browser/lib/CSSModules' /** * @param {Array} storgaeList */ const StorageList = ({storageList}) => (
{storageList.length > 0 ? storageList : (
No storage mount.
)}
) StorageList.propTypes = { storgaeList: PropTypes.arrayOf(PropTypes.element).isRequired } export default CSSModules(StorageList, styles)