top.jsx 393 B

1234567891011121314151617
  1. import React from 'react';
  2. import './top.less';
  3. import logo from '../../../image/kede.png';
  4. const Bottom = React.createClass({
  5. render() {
  6. return (
  7. <div className="top">
  8. <img className="top-logo" src={logo} alt="" />
  9. 科研中心RD库
  10. <a href={globalConfig.context + "/admin/login"}>前往科德系统</a>
  11. </div>
  12. );
  13. }
  14. });
  15. export default Bottom;