mirror of
https://github.com/umami-software/umami.git
synced 2026-02-22 13:35:35 +01:00
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
import SessionsPage from './SessionsPage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function ({ params: { websiteId } }) {
|
|
return <SessionsPage websiteId={websiteId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Sessions',
|
|
};
|