packer-cn/website/pages/community-tools.jsx

11 lines
333 B
React
Raw Normal View History

2020-12-11 16:54:10 -05:00
import MarkdownPage from '@hashicorp/react-markdown-page'
import generateStaticProps from '@hashicorp/react-markdown-page/server'
2020-12-04 16:00:53 -05:00
2020-12-11 16:54:10 -05:00
export default function CommunityToolsPage(staticProps) {
2020-12-04 16:00:53 -05:00
return <MarkdownPage {...staticProps} />
}
export const getStaticProps = generateStaticProps({
pagePath: 'content/community-tools.mdx',
})