Files
supabase/apps/docs/layouts/DefaultGuideLayout.tsx
Youssef Bentaleb efd45d7dc6 🐞 fix: edit page link on wrapper broken 404 (#18700)
* 🐞 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>
2024-01-25 16:01:28 +00:00

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