31 lines
959 B
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';
2017-09-06 00:54:12 +02:00
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="/basics/community/">Storybook Community</Link>
.
</center>
<center>
2017-07-23 09:28:30 -07:00
<Link to="https://now-examples-slackin-nqnzoygycp.now.sh/" 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>
2017-09-06 00:54:12 +02:00
</div>
);
export default Footer;