security-checklist/components/Footer/index.js
2019-01-12 17:52:43 -08:00

32 lines
722 B
JavaScript

// @flow
import React from 'react';
import { Container, Description, Icons } from './style';
import Icon from '../Icon';
export default function Footer() {
return (
<Container data-cy="footer">
<Icons>
<a
href="https://github.com/brianlovin/security-checklist"
target="_blank"
rel="noopener noreferrer"
>
<Icon glyph="github" />
</a>
</Icons>
<Description>
Copyright whenever. This is
<a
href="https://github.com/brianlovin/security-checklist"
target="_blank"
rel="noopener noreferrer"
>
open source
</a>
.
</Description>
</Container>
);
}