11 lines
320 B
React
11 lines
320 B
React
|
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',
|
||
|
})
|