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) => { return GuideLayout(props) } export default Layout