mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
layout file
This commit is contained in:
15
apps/web/components/layout.tsx
Normal file
15
apps/web/components/layout.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
import React, { ReactNode } from "react";
|
||||
|
||||
interface Props {
|
||||
children?: any;
|
||||
}
|
||||
|
||||
export default function Layout({ children }: Props) {
|
||||
return (
|
||||
<>
|
||||
<div>Header</div>
|
||||
<main>{children}</main>
|
||||
<div>Footer</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user