mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
16 lines
247 B
TypeScript
16 lines
247 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|