()
| 9 | |
| 10 | class SecurityLayout extends React.Component { |
| 11 | render() { |
| 12 | const { children, loading, currentUser } = this.props; |
| 13 | if ((loading) ) { |
| 14 | return <PageLoading />; |
| 15 | } |
| 16 | return children; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | export default connect(({ user, loading }) => ({ |
no outgoing calls
no test coverage detected