import React, { PureComponent } from 'react'; import { Tabs } from 'antd'; import style from "styled-components"; const store = require("store"); const { TabPane } = Tabs; export default class VehicleManage extends PureComponent { constructor(props, context) { super(props, context); this.state = { // currentURL: "http://localhost:3000/#/course/manage", }; } componentDidMount = () => {} render() { // const { currentURL } = this.state; return ( {store.get("VehicleManageURL")&&store.get("VehicleManageURL")["VehicleManageURL"]?( ): ( )} {/* {store.get("VehicleManageURL") !== undefined ? ( ) : '' } */} {/* {store.get("coursewareLibraryManagementURL") !== undefined ? (
*/}
); } } const Container = style.div` padding:10px 24px 24px; width:100%; height:100%; `;