ff-stream-web

git clone git://archive.git.mtrnord.blog/MTRNord/ff-stream-web.git
Log | Files | Refs | README | LICENSE

Footer.js (1123B)


      1 /**
      2  * React Starter Kit (https://www.reactstarterkit.com/)
      3  *
      4  * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
      5  *
      6  * This source code is licensed under the MIT license found in the
      7  * LICENSE.txt file in the root directory of this source tree.
      8  */
      9 
     10 import React from 'react';
     11 import withStyles from 'isomorphic-style-loader/lib/withStyles';
     12 import s from './Footer.css';
     13 import Link from '../Link';
     14 
     15 class Footer extends React.Component {
     16   render() {
     17     return (
     18       <div className={s.root}>
     19         <div className={s.container}>
     20           <span className={s.text}>© Your Company</span>
     21           <span className={s.spacer}>·</span>
     22           <Link className={s.link} to="/">Home</Link>
     23           <span className={s.spacer}>·</span>
     24           <Link className={s.link} to="/admin">Admin</Link>
     25           <span className={s.spacer}>·</span>
     26           <Link className={s.link} to="/privacy">Privacy</Link>
     27           <span className={s.spacer}>·</span>
     28           <Link className={s.link} to="/not-found">Not Found</Link>
     29         </div>
     30       </div>
     31     );
     32   }
     33 }
     34 
     35 export default withStyles(s)(Footer);