Feedback.js (944B)
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 './Feedback.css'; 13 14 class Feedback extends React.Component { 15 render() { 16 return ( 17 <div className={s.root}> 18 <div className={s.container}> 19 <a 20 className={s.link} 21 href="https://gitter.im/kriasoft/react-starter-kit" 22 >Ask a question</a> 23 <span className={s.spacer}>|</span> 24 <a 25 className={s.link} 26 href="https://github.com/kriasoft/react-starter-kit/issues/new" 27 >Report an issue</a> 28 </div> 29 </div> 30 ); 31 } 32 } 33 34 export default withStyles(s)(Feedback);