import React from 'react'; import './bottom.less'; const Bottom = React.createClass({ render() { return ( <div className="account-bottom" style={{ background: "rgb(0,0,0,.5)", color: "white" }} > <p>科德集团</p> <p>技术支持@科德</p> </div> ); } }); export default Bottom;