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