feat: add viewing on completed page for pending documents

This commit is contained in:
Mythie
2024-01-22 21:36:46 +11:00
parent e8c2ca8890
commit 4909eee401
4 changed files with 73 additions and 7 deletions

View File

@ -0,0 +1,17 @@
import React from 'react';
import { RefreshOnFocus } from '~/components/(dashboard)/refresh-on-focus/refresh-on-focus';
export type SigningLayoutProps = {
children: React.ReactNode;
};
export default function SigningLayout({ children }: SigningLayoutProps) {
return (
<div>
{children}
<RefreshOnFocus />
</div>
);
}