import React from 'react'; import { Row, Col } from 'antd'; import './topTab.less'; import ajax from 'jquery/src/ajax/xhr.js' import $ from 'jquery/src/ajax'; import logo from '../../../image/acc-logo.png'; const TopTab = React.createClass({ getInitialState() { return { username: 'username', }; }, logOut() { $.ajax({ method: "get", dataType: "json", url: globalConfig.context + "/login", }).done(function (data) { window.location.href = globalConfig.context + "/user/login.html" }); }, render() { return (
) } }); export default TopTab;