8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
// app/portal/account/page.tsx
|
|
export const dynamic = "force-dynamic"; // don't cache this page
|
|
|
|
import AccountClient from "./AccountClient";
|
|
|
|
export default function Page() {
|
|
return <AccountClient />;
|
|
}
|