mirror of
https://github.com/supabase/supabase.git
synced 2026-06-21 23:12:45 +08:00
23 lines
454 B
TypeScript
23 lines
454 B
TypeScript
import { FC } from 'react'
|
|
import { FooterHelpCalloutType } from '~/components/FooterHelpCallout'
|
|
import GuideLayout from './guides'
|
|
|
|
interface Props {
|
|
meta: {
|
|
title: string
|
|
description?: string
|
|
hide_table_of_contents?: boolean
|
|
video?: string
|
|
footerHelpType?: FooterHelpCalloutType
|
|
}
|
|
children: any
|
|
toc?: any
|
|
currentPage?: string
|
|
}
|
|
|
|
const Layout: FC<Props> = (props) => {
|
|
return GuideLayout(props)
|
|
}
|
|
|
|
export default Layout
|