Alternative implementation of LoggedInBanner.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Alternative code, from my tweet: | |
// Generic, reusable Banner component | |
function Banner({ type, children }) { | |
const bg = type === 'success' ? 'green' : 'red'; | |
return ( | |
<div | |
className={styles.banner} | |
style={{ backgroundColor: bg }} | |
> | |
{children} | |
</div> | |
); | |
} | |
// Generic, reusable only display for logged in: | |
function OnlyDisplayIfLoggedIn({ user, children }) { | |
// Only logged in users are allowed to see. | |
if (!user) { | |
return null; | |
} | |
return <>{children}</>; | |
} | |
// Follow up tweet contrasting usage. | |
<LoggedInBanner type={type} user={user}> | |
<p>Hello</p> | |
</LoggedInBanner> | |
// vs. | |
<OnlyDisplayIfLoggedIn user={user}> | |
<Banner type={type}> | |
<p>Hello</p> | |
</Banner> | |
</OnlyDisplayIfLoggedIn> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment