11 lines
320 B
JavaScript
11 lines
320 B
JavaScript
import MarkdownPage from '@hashicorp/react-markdown-page'
|
|
import generateStaticProps from '@hashicorp/react-markdown-page/server'
|
|
|
|
export default function SecurityPage(staticProps) {
|
|
return <MarkdownPage {...staticProps} />
|
|
}
|
|
|
|
export const getStaticProps = generateStaticProps({
|
|
pagePath: 'content/security.mdx',
|
|
})
|