import { SelectDropdown } from '@automattic/components'; import PropTypes from 'prop-types'; const StatsModuleSelectDropdown = ( { initialSelected, options, onSelect = () => {} } ) => { return (
); }; StatsModuleSelectDropdown.propTypes = { options: PropTypes.array, onSelect: PropTypes.func, }; export default StatsModuleSelectDropdown;