forked from mrwyndham/fastpocket
12 lines
218 B
JavaScript
12 lines
218 B
JavaScript
import React from "react"
|
|
|
|
function PageWrapper({ children }) {
|
|
return (
|
|
<main className="h-full flex flex-col my-auto mx-auto size-full flex-grow">
|
|
{children}
|
|
</main>
|
|
)
|
|
}
|
|
|
|
export default PageWrapper
|