mirror of
https://github.com/supabase/supabase.git
synced 2026-07-07 11:40:20 +08:00
* 🐞 fix: edit page link on wrapper broken 404 * Update apps/docs/layouts/guides/index.tsx Co-authored-by: Charis <26616127+charislam@users.noreply.github.com> --------- Co-authored-by: Chris Gwilliams <517923+encima@users.noreply.github.com> Co-authored-by: Charis <26616127+charislam@users.noreply.github.com>
24 lines
474 B
TypeScript
24 lines
474 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
|
|
editLink?: string
|
|
}
|
|
|
|
const Layout: FC<Props> = (props) => {
|
|
return GuideLayout(props)
|
|
}
|
|
|
|
export default Layout
|