mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
import { Metadata } from 'next';
|
|
|
|
import { Redirect } from './redirect';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Documenso - Share',
|
|
};
|
|
|
|
export default function SharePage() {
|
|
return <Redirect />;
|
|
}
|