mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
18 lines
346 B
TypeScript
18 lines
346 B
TypeScript
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>
|
|
);
|
|
}
|