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

17 lines
327 B
TypeScript
Raw Normal View History

2023-10-04 08:46:00 +00:00
import WebsitesDataTable from './WebsitesDataTable';
2023-10-08 01:55:14 +00:00
import WebsitesHeader from './WebsitesHeader';
2023-10-08 05:42:49 +00:00
import { Metadata } from 'next';
2023-09-29 12:29:22 +00:00
export default function () {
2023-10-08 01:55:14 +00:00
return (
<>
<WebsitesHeader />
<WebsitesDataTable />
</>
);
2023-09-29 12:29:22 +00:00
}
2023-10-08 05:42:49 +00:00
export const metadata: Metadata = {
title: 'Websites Settings | umami',
};