insomnia/app/ui/components/base/modal-footer.js
Gregory Schier 8452e8b777 Some eslint refactoring (#109)
* Fixed duplication kve bug

* Some changes

* Add proptypes linting

* Fixed proptypes even more

* Filename linting
2017-03-07 21:52:17 -08:00

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;