mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 09:41:35 +10:00
17 lines
319 B
TypeScript
17 lines
319 B
TypeScript
import { useSearchParams } from 'react-router';
|
|
|
|
export function meta() {
|
|
return [{ title: 'Documents' }];
|
|
}
|
|
|
|
export default function DocumentsPage() {
|
|
const [searchParams] = useSearchParams();
|
|
|
|
return (
|
|
<>
|
|
<div>hello</div>
|
|
{/* <DocumentsPageView searchParams={searchParams} /> */}
|
|
</>
|
|
);
|
|
}
|