Skip to content

Instantly share code, notes, and snippets.

@joboccara
Last active April 23, 2021 12:14
Show Gist options
  • Save joboccara/c4fc0554505e0690a1367531e2b5d53c to your computer and use it in GitHub Desktop.
Save joboccara/c4fc0554505e0690a1367531e2b5d53c to your computer and use it in GitHub Desktop.
const Page = ({ user, children, onLogin, onAddComment }) => {
if (!user.isLoggedIn) {
return (
<Layout>
<h3>Please log in to see and post comments</h3>
{showPasswordInput()}
<button onClick={onLogin}>Login!</button>
</Layout>
);
}
return (
<Layout>
<h3>Comments section</h3>
{showCommentInput()}
<button onClick={onAddComment}>
Add comment
</button>
{children}
</Layout>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment