12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
// app/(defaults)/turn14-settings/page.tsx
|
|
import type { Metadata } from 'next';
|
|
import Turn14SettingsClient from './Turn14SettingsClient';
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Turn14 Settings',
|
|
};
|
|
|
|
export default function Page() {
|
|
return <Turn14SettingsClient />;
|
|
} |