mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
6c1c03cef6
* Better create, started response history * Response history working * A bunch
12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
import React from 'react';
|
|
|
|
const DropdownButton = ({children, ...props}) => (
|
|
<button type="button" {...props}>
|
|
{children}
|
|
</button>
|
|
);
|
|
|
|
DropdownButton.propTypes = {};
|
|
|
|
export default DropdownButton;
|