fleet/frontend/components/App/Footer.jsx
Mike Stone b638ae186d Login page form submission (#157)
* API client utility

* moves test helpers to the test directory

* Utility to namespace local storage keys

* LoginSuccessfulPage component

* Check icon

* adds auth to redux state

* successful form submission

* Allow tests to load dummy SVG static images & test fixes
2016-09-13 22:43:26 -07:00

17 lines
355 B
JavaScript

import React from 'react';
import radium from 'radium';
import componentStyles from './styles';
import footerLogo from './footer-logo.svg';
const { footerStyles } = componentStyles;
const Footer = () => {
return (
<footer style={footerStyles}>
<img alt="Kolide logo" src={footerLogo} />
</footer>
);
};
export default radium(Footer);