Я пытаюсь скрыть / отключить «заголовок» на определенной странице моего приложения реакции, приведенный ниже - код для моих компонентов:
Я хочу скрыть заголовок по пути "/ dct"
export default function (WrappedComponent,theme) {
class Authentication extends PureComponent {
constructor(props) {
super(props);
this.state = { };
}
componentDidUpdate() {
this.checkAuth();
}
checkAuth() {
const { isLoggedIn, history: { push} } = this.props;
if (!isLoggedIn) {
push('/')
}
}
render() {
return (
<Fragment>
<article data-theme={theme}>
{this.checkAuth()}
<Header />
<main>
{this.props.isLoggedIn && <WrappedComponent />}
</main>
<Footer />
</article>
</Fragment>
);
}
}
const mapStateToProps = (state) => {
return {
isLoggedIn: state.login.loggedIn
}
}
return connect(mapStateToProps)(Authentication);
}
Заранее спасибо