Remove extra wrapper div around whole page

This commit is contained in:
Marshall Polaris 2022-05-11 15:10:10 -07:00
parent 3f669de99c
commit 6f8b81256e

View File

@ -12,7 +12,7 @@ export function Page(props: {
const { margin, assertUser, children, rightSidebar, suspend } = props
return (
<div>
<>
<div
className={clsx(
'mx-auto w-full pb-14 lg:grid lg:grid-cols-12 lg:gap-8 lg:pt-6 xl:max-w-7xl',
@ -38,7 +38,7 @@ export function Page(props: {
</div>
<BottomNavBar />
</div>
</>
)
}