Attempt to at move app into app sub dir
This commit is contained in:
15
app/web/src/pages/IdePartPage/IdePartPage.js
Normal file
15
app/web/src/pages/IdePartPage/IdePartPage.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import MainLayout from 'src/layouts/MainLayout'
|
||||
import IdePartCell from 'src/components/IdePartCell'
|
||||
import Seo from 'src/components/Seo/Seo'
|
||||
|
||||
const IdePartPage = ({ userName, partTitle }) => {
|
||||
return (
|
||||
<MainLayout shouldRemoveFooterInIde>
|
||||
<Seo title={partTitle} description={partTitle} lang="en-US" />
|
||||
|
||||
<IdePartCell userName={userName} partTitle={partTitle} />
|
||||
</MainLayout>
|
||||
)
|
||||
}
|
||||
|
||||
export default IdePartPage
|
||||
Reference in New Issue
Block a user