Refactored teams components.
This commit is contained in:
16
src/app/(main)/settings/websites/page.tsx
Normal file
16
src/app/(main)/settings/websites/page.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import WebsitesDataTable from './WebsitesDataTable';
|
||||
import WebsitesHeader from './WebsitesHeader';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default function () {
|
||||
return (
|
||||
<>
|
||||
<WebsitesHeader />
|
||||
<WebsitesDataTable />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Websites Settings | umami',
|
||||
};
|
||||
Reference in New Issue
Block a user