summaryrefslogtreecommitdiff
path: root/apps/web/app/reader/layout.tsx
blob: 8efedbea995383cca6b616d8f5eb01962dbe6241 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { ReaderLayoutShell } from "./_components/reader-layout-shell"
import { SidebarFooter } from "./_components/sidebar-footer"

export default function ReaderLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <ReaderLayoutShell sidebarFooter={<SidebarFooter />}>
      {children}
    </ReaderLayoutShell>
  )
}