35 lines
1.0 KiB
JavaScript
Raw Normal View History

import React from 'react';
2017-05-15 21:53:50 +10:00
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
{' '}
2017-05-15 21:53:50 +10:00
<Link to="/docs/react-storybook/basics/community/">
Storybook Community
2017-05-15 21:53:50 +10:00
</Link>
.
</center>
<center>
2017-05-15 21:53:50 +10:00
<Link to="https://storybooks-slackin.herokuapp.com/" target="_blank">
<img src={slackIcon} alt="Storybook Slack" />
2017-05-15 21:53:50 +10:00
</Link>
<Link to="https://github.com/storybooks/storybook" target="_blank">
<img src={githubIcon} alt="Storybook GitHub" style={{ padding: '7px' }} />
2017-05-15 21:53:50 +10:00
</Link>
</center>
</div>
</div>
</div>
</div>
);
export default Footer;