mirror of
https://github.com/documenso/documenso.git
synced 2025-11-21 04:01:45 +10:00
wip
This commit is contained in:
16
apps/remix/app/documents+/index.tsx
Normal file
16
apps/remix/app/documents+/index.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
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} /> */}
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user