12 lines
172 B
TypeScript
Raw Normal View History

import { UserButton } from "@clerk/nextjs";
2023-09-04 19:53:50 -07:00
export default function Home() {
return (
<div>
<UserButton
afterSignOutUrl="/"
/>
</div>
2023-09-04 19:53:50 -07:00
)
}