mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 19:15:37 +01:00
12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
import { WebsiteRealtimePage } from './WebsiteRealtimePage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
|
|
const { websiteId } = await params;
|
|
|
|
return <WebsiteRealtimePage websiteId={websiteId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Real-time',
|
|
};
|