mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
b638ae186d
* 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
17 lines
355 B
JavaScript
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);
|