forked from Gitlink/forgeplus-react
33 lines
654 B
JavaScript
33 lines
654 B
JavaScript
import React, { Component } from 'react';
|
|
import TPMChallenge from './TPMChallenge';
|
|
class TPMChallengeContainer 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> :
|
|
<TPMChallenge
|
|
{...this.props}
|
|
is_jupyter={this.props.is_jupyter}
|
|
>
|
|
</TPMChallenge>
|
|
}
|
|
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default TPMChallengeContainer;
|