bottom.jsx 385 B

123456789101112131415161718
  1. import React from 'react';
  2. import './bottom.less';
  3. const Bottom = React.createClass({
  4. render() {
  5. return (
  6. <div
  7. className="account-bottom"
  8. style={{ background: "rgb(0,0,0,.5)", color: "white" }}
  9. >
  10. <p>科德集团</p>
  11. <p>技术支持@科德</p>
  12. </div>
  13. );
  14. }
  15. });
  16. export default Bottom;