packer-cn/website/pages/community-tools.jsx
2020-12-14 18:20:19 -05:00

11 lines
333 B
JavaScript

import MarkdownPage from '@hashicorp/react-markdown-page'
import generateStaticProps from '@hashicorp/react-markdown-page/server'
export default function CommunityToolsPage(staticProps) {
return <MarkdownPage {...staticProps} />
}
export const getStaticProps = generateStaticProps({
pagePath: 'content/community-tools.mdx',
})