Files
supabase/apps/docs/layouts/DefaultGuideLayout.tsx
Charis 12152c3345 chore(docs): clean dead code (#34021)
Remove unused components in docs.
2025-03-05 12:29:33 -05:00

26 lines
568 B
TypeScript

import { FC } from 'react'
import { type MenuId } from '~/components/Navigation/NavigationMenu/NavigationMenu'
import GuideLayout from './guides'
interface Props {
meta: {
title: string
description?: string
hide_table_of_contents?: boolean
video?: string
}
children: any
toc?: any
// [Charis] Deprecate meta.hide_table_of_contents once the content migration is over
hideToc?: boolean
currentPage?: string
editLink?: string
menuId: MenuId
}
const Layout: FC<Props> = (props) => {
return GuideLayout(props)
}
export default Layout