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