import React, { Component, PropTypes } from 'react'; const baseClass = 'auth-form-wrapper'; class AuthenticationFormWrapper extends Component { static propTypes = { children: PropTypes.node, }; render () { const { children } = this.props; return (
Kolide Fleet {children}
); } } export default AuthenticationFormWrapper;