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