Changed route ids to be more explicit.
This commit is contained in:
10
src/app/share/[...shareId]/page.tsx
Normal file
10
src/app/share/[...shareId]/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import Share from './Share';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default function ({ params: { shareId } }) {
|
||||
return <Share shareId={shareId[0]} />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'umami',
|
||||
};
|
||||
Reference in New Issue
Block a user