umami/src/app/(main)/settings/websites/page.tsx

11 lines
201 B
TypeScript
Raw Normal View History

2023-10-08 07:42:49 +02:00
import { Metadata } from 'next';
2023-11-23 03:03:48 +01:00
import Websites from './Websites';
2023-09-29 14:29:22 +02:00
export default function () {
2023-11-23 03:03:48 +01:00
return <Websites />;
2023-09-29 14:29:22 +02:00
}
2023-10-08 07:42:49 +02:00
export const metadata: Metadata = {
title: 'Websites Settings | umami',
};