import React, { PureComponent } from 'react'; import { Tabs } from 'antd'; import style from "styled-components"; const store = require("store"); const { TabPane } = Tabs; export default class SubsidyBatch extends PureComponent { constructor(props, context) { super(props, context); this.state = { // currentURL: "http://114.116.191.105:8010/ars-web/user/saas/toPage.json?pageType=013&sessionId=1250641839AC7A71729102674272AD1013B6750B71834A438C66C3A573CC823340CA7E981C9EE0BC4979E9FADE17972DF26AE9406B441762EA190ABAB1B3BD61", }; } componentDidMount = () => { } render() { return ( {store.get("subsidyBatchUrl") !== undefined ? (
) : '' }
); } } const Container = style.div` padding:10px 24px 24px; width:100%; height:100%; `;