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