ProjectMarketplaceLayout.tsx19 lines · main
1import { PropsWithChildren } from 'react'
2
3import { MarketplaceSidebar } from '@/components/interfaces/Integrations/Marketplace/MarketplaceSidebar'
4import { ProjectLayout } from '@/components/layouts/ProjectLayout'
5import { withAuth } from '@/hooks/misc/withAuth'
6
7export const ProjectMarketplaceLayout = withAuth(({ children }: PropsWithChildren) => {
8 return (
9 <ProjectLayout
10 product="Integrations"
11 browserTitle={{ section: 'Integrations' }}
12 isBlocking={false}
13 productMenu={<MarketplaceSidebar />}
14 productMenuClassName="p-0"
15 >
16 {children}
17 </ProjectLayout>
18 )
19})