Files
cadhub/web/src/pages/NewCommentPage/NewCommentPage.js
2020-11-18 13:44:36 -03:00

20 lines
390 B
JavaScript

import MainLayout from 'src/layouts/MainLayout'
import NewComment from 'src/components/NewComment'
import Seo from 'src/components/Seo/Seo'
const NewCommentPage = () => {
return (
<MainLayout>
<Seo
title="New comment page"
description="New comment page"
lang="en-US"
/>
<NewComment />
</MainLayout>
)
}
export default NewCommentPage