2020-12-14 03:20:31 +00:00
|
|
|
import MarkdownPage from '@hashicorp/react-markdown-page'
|
|
|
|
import generateStaticProps from '@hashicorp/react-markdown-page/server'
|
2020-12-08 23:24:36 +00:00
|
|
|
|
2020-12-14 03:20:31 +00:00
|
|
|
export default function SecurityPage(staticProps) {
|
2020-12-08 23:24:36 +00:00
|
|
|
return <MarkdownPage {...staticProps} />
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getStaticProps = generateStaticProps({
|
2020-12-14 03:20:31 +00:00
|
|
|
pagePath: 'content/security.mdx',
|
2020-12-08 23:24:36 +00:00
|
|
|
})
|