mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 01:10:15 -04:00
12152c3345
Remove unused components in docs.
26 lines
568 B
TypeScript
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
|