1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-23 20:07:40 +02:00
unleash.unleash/frontend/src/component/menu/footer.jsx

32 lines
1.3 KiB
React
Raw Normal View History

import React from 'react';
import { FooterDropDownSection, FooterLinkList, FooterSection } from 'react-mdl';
import { NavLink } from 'react-router-dom';
import { baseRoutes as routes } from './routes';
export const FooterMenu = () => (
<FooterSection type="middle">
<FooterDropDownSection title="Menu">
<FooterLinkList>
{routes.map(item => (
<NavLink key={item.path} to={item.path}>
{item.title}
</NavLink>
))}
<a href="https://github.com/Unleash/unleash/" target="_blank">
GitHub
</a>
</FooterLinkList>
</FooterDropDownSection>
<FooterDropDownSection title="Clients">
<FooterLinkList>
<a href="https://github.com/Unleash/unleash-client-node/">Node.js</a>
<a href="https://github.com/Unleash/unleash-client-java/">Java</a>
<a href="https://github.com/Unleash/unleash-client-go/">Go</a>
<a href="https://github.com/unleash/unleash-client-ruby">Ruby</a>
<a href="https://github.com/Unleash/unleash-client-python">Python</a>
</FooterLinkList>
</FooterDropDownSection>
</FooterSection>
);