import React, { PureComponent } from 'react'; import { Tabs } from 'antd'; import style from "styled-components"; const store = require("store"); const { TabPane } = Tabs; export default class OrderManagement extends PureComponent { constructor(props, context) { super(props, context); this.state = { url: store.get("orderManagementOtherURL")["orderManagementOtherURL"], // url: 'http://localhost:3000/#/order/OrderManager?systype=saas&sessionId=DBBC28EB7CF071B24A9C1EDCE5B3D1DE664224FAF27BE7A6220C0F550F42E02371E94A38B3E9554B382EA76443A62F559F8D52D66E604EAB74F7C3AD22C5712A&areaCode=110100' }; } componentDidMount = () => { } render() { return ( {store.get("orderManagementOtherURL") !== undefined ? (
) : '' } {/*{store.get("orderManagementOtherURL") !== undefined ? ( ) : '' }*/}
); } } const Container = style.div` padding:10px 24px 24px; width:100%; height:100%; `;