mirror of
https://github.com/yusufipk/OpenFrame.git
synced 2026-09-11 17:46:06 +00:00
8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import { requireAuthOrRedirect } from '@/lib/route-access';
|
|
import NewWorkspacePageClient from './new-workspace-page-client';
|
|
|
|
export default async function NewWorkspacePage() {
|
|
await requireAuthOrRedirect();
|
|
return <NewWorkspacePageClient />;
|
|
}
|