mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
import WebsiteRealtimePage from './WebsiteRealtimePage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default async function ({ params }: { params: { websiteId: string } }) {
|
|
const { websiteId } = await params;
|
|
|
|
return <WebsiteRealtimePage websiteId={websiteId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Real-time',
|
|
};
|