2017-05-26 00:46:23 +02:00

35 lines
1.0 KiB
JavaScript

import React from 'react';
import { Link } from 'react-router';
import slackIcon from './images/slack-icon.png';
import githubIcon from './images/github-icon.png';
import './style.css';
const Footer = () => (
<div id="footer" className="row">
<div className="col-md-12">
<div className="row logos">
<div className="col-xs-12">
<center>
Maintained by the
{' '}
<Link to="/docs/react-storybook/basics/community/">
Storybook Community
</Link>
.
</center>
<center>
<Link to="https://storybooks-slackin.herokuapp.com/" target="_blank">
<img src={slackIcon} alt="Storybook Slack" />
</Link>
<Link to="https://github.com/storybooks/storybook" target="_blank">
<img src={githubIcon} alt="Storybook GitHub" style={{ padding: '7px' }} />
</Link>
</center>
</div>
</div>
</div>
</div>
);
export default Footer;