mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-11 12:08:21 -04:00
10 lines
326 B
JavaScript
10 lines
326 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/security.mdx',
|
|
})
|