16 lines
297 B
JavaScript
16 lines
297 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Dropdown from './Dropdown';
|
|
|
|
const propTypes = {
|
|
children: PropTypes.node,
|
|
};
|
|
|
|
function ButtonDropdown(props) {
|
|
return <Dropdown group {...props} />;
|
|
}
|
|
|
|
ButtonDropdown.propTypes = propTypes;
|
|
|
|
export default ButtonDropdown;
|