10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import AccountClient from "../components/AccountClient";
|
|
|
|
export default function AccountPage() {
|
|
return (
|
|
<main className="page-shell workspace-page">
|
|
<AccountClient section="summary" />
|
|
</main>
|
|
);
|
|
}
|