mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
15 lines
319 B
TypeScript
15 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;
|