Files
supabase/apps/docs/layouts/DefaultGuideLayout.tsx
2023-02-01 21:30:19 +08:00

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