fleet/frontend/components/AuthenticationFormWrapper/AuthenticationFormWrapper.jsx
Jason Meller 1409c294af Add awesome card stacking animations on login (#246)
* Add awesome card stacking animations on login

* Fix linter error

* Fix proptypes warning and clean up if/then logic

* True up vh units

* Make logout pixel perfect with login form
2016-09-28 03:16:09 -07:00

24 lines
616 B
JavaScript

import React, { Component, PropTypes } from 'react';
import radium from 'radium';
import componentStyles from './styles';
class AuthenticationFormWrapper extends Component {
static propTypes = {
children: PropTypes.node,
};
render () {
const { children } = this.props;
const { containerStyles, whiteTabStyles } = componentStyles;
return (
<div style={containerStyles}>
<img alt="Kolide text logo" src="/assets/images/kolide-logo-text.svg" />
<div style={whiteTabStyles} />
{children}
</div>
);
}
}
export default radium(AuthenticationFormWrapper);