You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
817 B
40 lines
817 B
import React, { Component } from 'react';
|
|
import { Redirect } from 'react-router';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import TPMPropaedeutics from './TPMPropaedeutics'
|
|
|
|
import axios from 'axios';
|
|
|
|
class TPMPropaedeuticsComponent extends Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.state = {
|
|
// tpmLoading: true,
|
|
// creator: {
|
|
// owner_id: ''
|
|
// }
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { tpmLoading } = this.props;
|
|
|
|
return (
|
|
<React.Fragment>
|
|
{ tpmLoading ? <div style={{ minHeight: '886px'}}></div> :
|
|
<TPMPropaedeutics
|
|
{...this.props}
|
|
>
|
|
</TPMPropaedeutics>
|
|
}
|
|
</React.Fragment>
|
|
|
|
|
|
);
|
|
}
|
|
}
|
|
|
|
export default TPMPropaedeuticsComponent ;
|