import React, { PureComponent } from 'react'; import { Tabs } from 'antd'; import style from "styled-components"; const store = require("store"); const { TabPane } = Tabs; export default class GunControl 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("GunControlURL") !== undefined ? ( ) : '' } {/* {store.get("coursewareLibraryManagementURL") !== undefined ? (
*/}
); } } const Container = style.div` padding:10px 24px 24px; width:100%; height:100%; `;