mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
import React from 'react';
|
|
|
|
import footerLogo from '../../../assets/images/footer-logo.svg';
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<footer className="footer">
|
|
<img alt="Kolide logo" src={footerLogo} />
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|