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.
35 lines
749 B
35 lines
749 B
import React, { Component } from 'react';
|
|
import { Redirect } from 'react-router';
|
|
import TPMChallenge from './TPMChallenge';
|
|
class TPMChallengeContainer extends Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.state = {
|
|
tpmLoading: true,
|
|
creator: {
|
|
owner_id: '',
|
|
}
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { tpmLoading } = this.props;
|
|
const user = this.props.current_user;
|
|
|
|
return (
|
|
<React.Fragment>
|
|
|
|
{ tpmLoading ? <div style={{ minHeight: '886px'}}></div> :
|
|
<TPMChallenge
|
|
{...this.props}
|
|
>
|
|
</TPMChallenge>
|
|
}
|
|
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default TPMChallengeContainer;
|