mirror of
https://github.com/status-im/consul.git
synced 2025-03-01 13:50:41 +00:00
11 lines
349 B
React
11 lines
349 B
React
|
import MarkdownPage from 'components/_temporary-markdown-page'
|
||
|
import generateStaticProps from 'components/_temporary-markdown-page/server'
|
||
|
|
||
|
export default function CommunityToolsPage({ staticProps }) {
|
||
|
return <MarkdownPage {...staticProps} />
|
||
|
}
|
||
|
|
||
|
export const getStaticProps = generateStaticProps({
|
||
|
pagePath: 'content/community-plugins.mdx',
|
||
|
})
|