Files
insomnia/app/ui/components/base/dropdown/DropdownButton.js
Gregory Schier 1d45367aa1 Added eslint and fixed all problems (#101)
* Fixed duplication kve bug

* Added semistandard and updated code

* Actually got it working

* Even better

* I think it should work on Windows now
2017-03-03 12:09:08 -08:00

17 lines
314 B
JavaScript

import React, {PureComponent} from 'react';
class DropdownButton extends PureComponent {
render () {
const {children, ...props} = this.props;
return (
<button type="button" {...props}>
{children}
</button>
);
}
}
DropdownButton.propTypes = {};
export default DropdownButton;