mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-31 11:26:42 -05: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>
|
|
);
|
|
}
|