7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
'use client';
|
|
|
|
import { LegalPage } from '@/components/legal/LegalPage';
|
|
|
|
export default function PrivacyRoutePage() {
|
|
return <LegalPage initialTab="privacy" />;
|
|
}
|