Skip to content

Commit

Permalink
insert clerk button
Browse files Browse the repository at this point in the history
  • Loading branch information
bahiensed committed Jul 23, 2024
1 parent 6116647 commit 08ea75f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion components/RightSideBar.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
import React from 'react'
import { SignInButton, SignedIn, SignedOut, UserButton } from '@clerk/nextjs'

const RightSideBar = () => {
return (
<section className='right_sidebar text-white-1 '>
<div>
<SignedOut>
<SignInButton />
</SignedOut>
<SignedIn>
<UserButton />
</SignedIn>
</div>

Right SideBar
</section>
)
Expand Down

0 comments on commit 08ea75f

Please sign in to comment.