2017-04-17 13:29:51 -07:00
|
|
|
import React from 'react';
|
2017-05-15 21:53:50 +10:00
|
|
|
import { Link } from 'react-router';
|
2017-04-17 13:29:51 -07:00
|
|
|
import slackIcon from './images/slack-icon.png';
|
2017-05-15 16:32:47 +10:00
|
|
|
import githubIcon from './images/github-icon.png';
|
2017-04-17 13:29:51 -07:00
|
|
|
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>
|
2017-05-15 16:32:47 +10:00
|
|
|
Maintained by the
|
|
|
|
{' '}
|
2017-05-15 21:53:50 +10:00
|
|
|
<Link to="/docs/react-storybook/basics/community/">
|
2017-05-15 16:32:47 +10:00
|
|
|
Storybook Community
|
2017-05-15 21:53:50 +10:00
|
|
|
</Link>
|
2017-05-15 16:32:47 +10:00
|
|
|
.
|
|
|
|
</center>
|
|
|
|
<center>
|
2017-05-15 21:53:50 +10:00
|
|
|
<Link to="https://storybooks-slackin.herokuapp.com/" target="_blank">
|
2017-05-15 16:32:47 +10:00
|
|
|
<img src={slackIcon} alt="Storybook Slack" />
|
2017-05-15 21:53:50 +10:00
|
|
|
</Link>
|
|
|
|
<Link to="https://github.com/storybooks/storybook" target="_blank">
|
2017-05-15 16:32:47 +10:00
|
|
|
<img src={githubIcon} alt="Storybook GitHub" style={{ padding: '7px' }} />
|
2017-05-15 21:53:50 +10:00
|
|
|
</Link>
|
2017-04-17 13:29:51 -07:00
|
|
|
</center>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Footer;
|