11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
import type { Metadata } from 'next';
|
|
import { LinksPage } from './LinksPage';
|
|
|
|
export default function () {
|
|
return <LinksPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Links',
|
|
};
|