16 lines
408 B
JavaScript
16 lines
408 B
JavaScript
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>
|
|
<Seo title={partTitle} description={partTitle} lang="en-US" />
|
|
|
|
<IdePartCell userName={userName} partTitle={partTitle} />
|
|
</MainLayout>
|
|
)
|
|
}
|
|
|
|
export default IdePartPage
|