mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
11 lines
157 B
Plaintext
11 lines
157 B
Plaintext
export const Wrapper = ({ children }) => {
|
|
return <div className="p-24">{children}</div>;
|
|
};
|
|
|
|
<Wrapper>
|
|
# Hello World
|
|
|
|
My first Nextra page.
|
|
|
|
</Wrapper>
|