mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
8452e8b777
* Fixed duplication kve bug * Some changes * Add proptypes linting * Fixed proptypes even more * Filename linting
24 lines
473 B
JavaScript
24 lines
473 B
JavaScript
import React, {PropTypes, PureComponent} from 'react';
|
|
import classnames from 'classnames';
|
|
|
|
class ModalFooter extends PureComponent {
|
|
render () {
|
|
const {children, className} = this.props;
|
|
return (
|
|
<div className={classnames('modal__footer', className)}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ModalFooter.propTypes = {
|
|
// Required
|
|
children: PropTypes.node.isRequired,
|
|
|
|
// Optional
|
|
className: PropTypes.string
|
|
};
|
|
|
|
export default ModalFooter;
|