mirror of
https://github.com/umami-software/umami.git
synced 2026-02-22 05:25:36 +01:00
Segment editing.
This commit is contained in:
parent
fba7e12c36
commit
2dbcf63eeb
22 changed files with 306 additions and 42 deletions
12
src/app/(main)/websites/[websiteId]/segments/page.tsx
Normal file
12
src/app/(main)/websites/[websiteId]/segments/page.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { Metadata } from 'next';
|
||||
import { SegmentsPage } from './SegmentsPage';
|
||||
|
||||
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
|
||||
const { websiteId } = await params;
|
||||
|
||||
return <SegmentsPage websiteId={websiteId} />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Segments',
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue