mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 12:27:44 +00:00
12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
"use client"
|
|
|
|
|
|
export function ManageAccount() {
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<p>
|
|
Manage Account
|
|
</p>
|
|
</div>
|
|
)
|
|
} |