/** * 北京展览馆的特殊搜索字样展示 */ import React, { Component } from "react"; import { Row, Col } from "antd"; export default class BeijingVideo extends Component { constructor(props) { super(props); this.state = { // beijingVideo: props.beijingVideo }; } componentDidMount() {} render() { return (
{ this.props.changeBeijingVideo(false) // this.setState({ beijingVideo: false }); }} > x
); } }