12 lines
176 B
TypeScript
Raw Normal View History

2023-10-07 13:10:50 -07:00
import { UserButton } from "@clerk/nextjs/app-beta";
export default function Home() {
return (
<div>
<UserButton
afterSignOutUrl="/"
/>
</div>
)
}