mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 12:05:41 +01:00
14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
'use client';
|
|
import WebsiteHeader from '../WebsiteHeader';
|
|
import SessionsDataTable from './SessionsDataTable';
|
|
|
|
export function SessionsPage({ websiteId }) {
|
|
return (
|
|
<>
|
|
<WebsiteHeader websiteId={websiteId} />
|
|
<SessionsDataTable websiteId={websiteId} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default SessionsPage;
|