import React, { Component } from 'react'; import { Redirect } from 'react-router'; import PropTypes from 'prop-types'; import { CircularProgress } from 'material-ui/Progress'; import './TPMShixunDiscuss.css' import Shixunfork_list from './shixunchild/Shixunfork_list' import TPMRightSection from './component/TPMRightSection' import TPMNav from './component/TPMNav' class TPMForklist extends Component { constructor(props) { super(props) } componentWillReceiveProps(newProps, newContext) { } componentDidMount() { } render() { const { loadingContent, creator, shixun, myshixun, recommend_shixuns, current_user, watched, aboutFocus, user, match } = this.props; return (
{ loadingContent ? : }
); } } export default TPMForklist;