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

16 lines
330 B
TypeScript
Raw Normal View History

2023-11-23 03:03:48 +01:00
'use client';
import { useUser } from 'components/hooks';
import WebsitesDataTable from './WebsitesDataTable';
import WebsitesHeader from './WebsitesHeader';
export default function Websites() {
const { user } = useUser();
return (
<>
<WebsitesHeader />
<WebsitesDataTable userId={user.id} />
</>
);
}