Render <Dashboard/> when logged in, else <Login/>. Input: true or false. Print the rendered tag name.
<Dashboard/>
<Login/>
true
false
Input: a boolean literal. Output: Dashboard or Login.
Dashboard
Login
Your program reads from stdin and prints to stdout.
Example 1
Input: true
Output: Dashboard
Hints