Skip to content
Advertisement

Implementing conditional rendering – blank page being returned

A login state is being generated from the “LoginPage.js” code up to the “App.js” component so that I can implement conditional rendering based upon the login state which can be “true” or “false”.

I have attached the files below. My website still shows the login page and never renders the other conditional content I want it to render.

App.js file

JavaScript

LoginPage.js file

JavaScript

Advertisement

Answer

You need to useState in App instead of LoginPage.js.

It is because the state will be get if it is updated. React does not rerender if a value change like the way you define.

So you should send login state (true) when click login button, then In App you get it and parse it to state of App.js.

LoginPage.jsx

JavaScript

And app.js

JavaScript

You can check complete answer here: https://codesandbox.io/s/clever-hermann-83048s

Hope this will help you !

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement