mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
314daf155e
* Added an UNSET sync mode * Fixed tests * Remove sync logs and adjusted dropdown * Fixed duplication kve bug * Added sync config modal * AUtobind * Autobind working * Hot loading works again * Remove express * Fixed tests * Fix one thing * Fixed some hmr-related bugs
17 lines
313 B
JavaScript
17 lines
313 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;
|